~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSStrUtil.h

  • Committer: Monty Taylor
  • Date: 2011-03-11 18:48:55 UTC
  • mfrom: (2228.1.8 build)
  • Revision ID: mordred@inaugust.com-20110311184855-1essd3a6xfr7lx6r
Merged Andrew: drizzledump and docs bug fixes
Merged Barry: pbms bugfixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
uint64_t        cs_str_to_word8(const char *ptr, bool *overflow = NULL);
78
78
size_t          cs_hex_to_bin(size_t size, void *bin, const char *hex);
79
79
size_t          cs_hex_to_bin(size_t size, void *bin, size_t len, const char *hex);
 
80
// NOTE: cs_bin_to_hex() Always null terminates the result.
80
81
void            cs_bin_to_hex(size_t size, char *hex, size_t len, const void *bin);
81
82
void            cs_strToUpper(char *ptr);
82
83
void            cs_strToLower(char *ptr);