From ee9b5e011857ff4a75ceaa9aaf3b2ed8ceacfadf Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 7 Apr 2010 20:27:05 +0200 Subject: [PATCH 1/1] util: add delete_chars() call --- util.c | 17 +++++++++++++++++ util.h | 2 ++ 2 files changed, 19 insertions(+) diff --git a/util.c b/util.c index 43826990c..939b2b06e 100644 --- a/util.c +++ b/util.c @@ -611,6 +611,23 @@ char *strstrip(char *s) { } +char *delete_chars(char *s, const char *bad) { + char *f, *t; + + /* Drops all whitespace, regardless where in the string */ + + for (f = s, t = s; *f; f++) { + if (strchr(bad, *f)) + continue; + + *(t++) = *f; + } + + *t = 0; + + return s; +} + char *file_in_same_dir(const char *path, const char *filename) { char *e, *r; size_t k; diff --git a/util.h b/util.h index d0fd66dda..3ee536add 100644 --- a/util.h +++ b/util.h @@ -129,6 +129,8 @@ char **strv_path_make_absolute_cwd(char **l); int reset_all_signal_handlers(void); char *strstrip(char *s); +char *delete_chars(char *s, const char *bad); + char *file_in_same_dir(const char *path, const char *filename); int mkdir_parents(const char *path, mode_t mode); -- 2.30.2