~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_string.h

  • Committer: Stewart Smith
  • Date: 2009-10-19 04:09:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1192.
  • Revision ID: stewart@flamingspork.com-20091019040944-od59yogaiun7u25q
remove unused USTRING_WITH_LEN() macro

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
 
37
37
#define STRING_WITH_LEN(X) (X), ((size_t) (sizeof(X) - 1))
38
 
#define USTRING_WITH_LEN(X) ((unsigned char*) X), ((size_t) (sizeof(X) - 1))
39
38
#define C_STRING_WITH_LEN(X) ((char *) (X)), ((size_t) (sizeof(X) - 1))
40
39
 
41
40