~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/query.h

  • Committer: Mark Atwood
  • Date: 2011-11-20 08:50:16 UTC
  • mfrom: (2461.1.2 drizzle-build)
  • Revision ID: me@mark.atwood.name-20111120085016-2o4no5btx18x2gws
mergeĀ lp:~brianaker/drizzle/libdrizzle-refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
227
227
 * size of the output string in to.
228
228
 */
229
229
DRIZZLE_API
230
 
size_t drizzle_escape_string(char *to, const char *from, size_t from_size);
231
 
DRIZZLE_API
232
 
ssize_t drizzle_safe_escape_string(char *to, size_t max_to_size, const char *from, size_t from_size);
 
230
ssize_t drizzle_escape_string(char *to, size_t max_to_size, const char *from, size_t from_size);
 
231
 
233
232
DRIZZLE_API
234
233
size_t drizzle_hex_string(char *to, const char *from, size_t from_size);
 
234
 
235
235
DRIZZLE_API
236
236
void drizzle_mysql_password_hash(char *to, const char *from, size_t from_size);
237
237