2 * UCW Library -- String Routines
4 * (c) 2006 Pavel Charvat <pchar@ucw.cz>
5 * (c) 2007--2008 Martin Mares <mj@ucw.cz>
7 * This software may be freely distributed and used according to the terms
8 * of the GNU Lesser General Public License.
16 char *str_format_flags(char *dest, const char *fmt, uns flags);
20 char *str_unesc(char *dest, const char *src);
24 int str_sepsplit(char *str, uns sep, char **rec, uns max);
25 int str_wordsplit(char *str, char **rec, uns max);
27 /* str-(i)match.c: Matching of shell patterns */
29 int str_match_pattern(const char *patt, const char *str);
30 int str_match_pattern_nocase(const char *patt, const char *str);
34 void mem_to_hex(char *dest, const byte *src, uns bytes, uns flags);
35 const char *hex_to_mem(byte *dest, const char *src, uns max_bytes, uns flags);
37 // Bottom 8 bits of flags are an optional separator of bytes, the rest is:
38 #define MEM_TO_HEX_UPCASE 0x100