
* Don't mix pragma guards and include guards, prefer classic include guards since apparently pragma guards are not a standard yet. * Use the DUNST_FILE_H naming convention for all include guards.
28 lines
1005 B
C
28 lines
1005 B
C
/* copyright 2013 Sascha Kruse and contributors (see LICENSE for licensing information) */
|
|
#ifndef DUNST_UTILS_H
|
|
#define DUNST_UTILS_H
|
|
|
|
/* replace all occurences of the character needle with the character replacement in haystack */
|
|
char *string_replace_char(char needle, char replacement, char *haystack);
|
|
|
|
/* replace all occurrences of needle with replacement in haystack */
|
|
char *string_replace_all(const char *needle, const char *replacement,
|
|
char *haystack);
|
|
|
|
/* replace needle with replacement in haystack */
|
|
char *string_replace(const char *needle, const char *replacement,
|
|
char *haystack);
|
|
|
|
char *string_append(char *a, const char *b, const char *sep);
|
|
|
|
char **string_to_argv(const char *s);
|
|
|
|
/* strip content between two delimiter characters (inplace) */
|
|
void string_strip_delimited(char *str, char a, char b);
|
|
|
|
/* exit with an error message */
|
|
void die(char *msg, int exit_value);
|
|
|
|
#endif
|
|
/* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */
|