str.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /** @file str.h
  2. * @brief Public interface for faux string functions.
  3. */
  4. #ifndef _faux_str_h
  5. #define _faux_str_h
  6. #include <stddef.h>
  7. #include "faux/faux.h"
  8. #define UTF8_MASK 0xC0
  9. #define UTF8_7BIT_MASK 0x80 // One byte or multibyte
  10. #define UTF8_11 0xC0 // First UTF8 byte
  11. #define UTF8_10 0x80 // Next UTF8 bytes
  12. C_DECL_BEGIN
  13. void faux_str_free(char *str);
  14. char *faux_str_dupn(const char *str, size_t n);
  15. char *faux_str_dup(const char *str);
  16. char *faux_str_catn(char **str, const char *text, size_t n);
  17. char *faux_str_cat(char **str, const char *text);
  18. char *faux_str_vcat(char **str, ...);
  19. char *faux_str_tolower(const char *str);
  20. char *faux_str_toupper(const char *str);
  21. int faux_str_casecmpn(const char *str1, const char *str2, size_t n);
  22. int faux_str_casecmp(const char *str1, const char *str2);
  23. char *faux_str_casestr(const char *haystack, const char *needle);
  24. char *faux_str_charsn(const char *str, const char *chars_to_search, size_t n);
  25. char *faux_str_chars(const char *str, const char *chars_to_search);
  26. //const char *faux_str_suffix(const char *string);
  27. /*
  28. * These are the escape characters which are used by default when
  29. * expanding variables. These characters will be backslash escaped
  30. * to prevent them from being interpreted in a script.
  31. *
  32. * This is a security feature to prevent users from arbitarily setting
  33. * parameters to contain special sequences.
  34. */
  35. //extern const char *faux_str_esc_default;
  36. //extern const char *faux_str_esc_regex;
  37. //extern const char *faux_str_esc_quoted;
  38. //char *faux_str_decode(const char *string);
  39. //char *faux_str_ndecode(const char *string, unsigned int len);
  40. //char *faux_str_encode(const char *string, const char *escape_chars);
  41. //unsigned int faux_str_equal_part(const char *str1, const char *str2,
  42. // bool_t utf8);
  43. //const char *faux_str_nextword(const char *string,
  44. // size_t *len, size_t *offset, size_t *quoted);
  45. //unsigned int faux_str_wordcount(const char *line);
  46. C_DECL_END
  47. #endif /* _faux_str_h */