~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle-1.0/query.h

  • Committer: Brian Aker
  • Date: 2011-12-27 20:30:10 UTC
  • mfrom: (2472.1.9 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2482.
  • Revision ID: brian@tangent.org-20111227203010-1ymj1ekc2k37bu8s
Merge yacc tree.

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);
233
 
DRIZZLE_API
234
 
size_t drizzle_hex_string(char *to, const char *from, size_t from_size);
235
 
DRIZZLE_API
236
 
void drizzle_mysql_password_hash(char *to, const char *from, size_t from_size);
 
230
size_t drizzle_escape_string(char *to, const char *from, const size_t from_size);
 
231
 
 
232
DRIZZLE_API
 
233
ssize_t drizzle_safe_escape_string(char *to, const size_t max_to_size, const char *from, const size_t from_size);
 
234
 
 
235
DRIZZLE_API
 
236
size_t drizzle_hex_string(char *to, const char *from, const size_t from_size);
 
237
 
 
238
DRIZZLE_API
 
239
void drizzle_mysql_password_hash(char *to, const char *from, const size_t from_size);
237
240
 
238
241
/** @} */
239
242