X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=inline;f=ucw%2Fstring.h;h=9e9df4faa1ee054cbfd3aa746aeaeba8e859564e;hb=5de81f1debc4341fb3af4e756b0a18e196d5ba13;hp=8ec579c7d3c382c1a8ceb6d25b3204f4987fd07b;hpb=ba1c173f544383aa6553a75dee6e6858d8f243a4;p=libucw.git diff --git a/ucw/string.h b/ucw/string.h index 8ec579c7..9e9df4fa 100644 --- a/ucw/string.h +++ b/ucw/string.h @@ -26,12 +26,6 @@ char *str_format_flags(char *dest, const char *fmt, uns flags); /** Counts occurrences of @chr in @str. **/ uns str_count_char(const char *str, uns chr); -/** Returns a non-zero value if @haystack starts with @needle. **/ -int str_starts_with(const char *haystack, const char *needle); - -/** Returns a non-zero value if @haystack ends with @needle. **/ -int str_ends_with(const char *haystack, const char *needle); - /* str-esc.c */ /**