~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/m_string.h

Merging from trunk r102

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include <string.h>
31
31
#endif
32
32
 
33
 
/* need by my_vsnprintf */
34
 
#include <stdarg.h> 
35
 
 
36
33
#ifdef _AIX
37
34
#undef HAVE_BCMP
38
35
#endif
264
261
#endif
265
262
#endif
266
263
 
267
 
/* my_vsnprintf.c */
268
 
 
269
 
extern size_t my_vsnprintf(char *str, size_t n,
270
 
                           const char *format, va_list ap);
271
 
extern size_t my_snprintf(char *to, size_t n, const char *fmt, ...)
272
 
  ATTRIBUTE_FORMAT(printf, 3, 4);
273
264
 
274
265
#if defined(__cplusplus)
275
266
}