~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/memory/sql_alloc.h

  • Committer: Olaf van der Spek
  • Date: 2011-07-07 13:41:07 UTC
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110707134107-6mi7pauiatxtf4oe
Rename strmake to strdup (standard name)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
void* sql_alloc(size_t);
29
29
void* sql_calloc(size_t);
30
30
char* sql_strdup(const char*);
31
 
char* sql_strmake(const char*, size_t);
 
31
char* sql_strdup(const char*, size_t);
32
32
void* sql_memdup(const void*, size_t);
33
33
 
34
34
class DRIZZLED_API SqlAlloc