dunst/utils.h
Sascha Kruse 1a4deea501 Update to verbose mode
Remove dead code and print the notifications, when -print is given
2012-09-09 10:39:33 +02:00

18 lines
392 B
C

#ifndef UTIL_H
#define UTIL_H
/* remove spaces before and after str */
void strtrim_end(char *str);
/* replace needle with replacement in haystack */
char *string_replace(const char *needle, const char *replacement,
char *haystack);
/* exit with an error message */
void die(char * msg, int exit_value);
int digit_count(int i);
#endif
/* vim: set ts=8 sw=8 tw=0: */