diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-28 14:19:27 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-28 14:19:27 +0000 |
commit | 17282292c2259b130ef7833bdac97c8ce8bf5515 (patch) | |
tree | 2740c55326f87a057cb7652d03582d5a9bfb0f48 /include | |
parent | 5de8a13b0888e6eb490e13cba2cca293ee8bc4ad (diff) | |
download | busybox-w32-17282292c2259b130ef7833bdac97c8ce8bf5515.tar.gz busybox-w32-17282292c2259b130ef7833bdac97c8ce8bf5515.tar.bz2 busybox-w32-17282292c2259b130ef7833bdac97c8ce8bf5515.zip |
- add strrchr
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 0d6e3af7d..947f28d79 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -244,6 +244,7 @@ extern void chomp(char *s); | |||
244 | extern void trim(char *s); | 244 | extern void trim(char *s); |
245 | extern char *skip_whitespace(const char *); | 245 | extern char *skip_whitespace(const char *); |
246 | extern char *skip_non_whitespace(const char *); | 246 | extern char *skip_non_whitespace(const char *); |
247 | extern char *strrstr(const char *haystack, const char *needle); | ||
247 | 248 | ||
248 | //TODO: supply a pointer to char[11] buffer (avoid statics)? | 249 | //TODO: supply a pointer to char[11] buffer (avoid statics)? |
249 | extern const char *bb_mode_string(mode_t mode); | 250 | extern const char *bb_mode_string(mode_t mode); |