~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/m_string.h

  • Committer: Andy Lester
  • Date: 2008-08-09 18:44:13 UTC
  • mto: (266.1.30 use-replace-funcs)
  • mto: This revision was merged to the branch mainline in revision 287.
  • Revision ID: andy@petdance.com-20080809184413-968ap13kyelqzloe
Removed strcmp()

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
extern char *strchr(const char *, char);
90
90
extern char *strrchr(const char *, char);
91
91
extern char *strcpy(char *, const char *);
92
 
extern int strcmp(const char *, const char *);
93
 
#ifndef __GNUC__
94
 
extern size_t strlen(const char *);
95
 
#endif
96
92
#endif
97
93
 
98
94
#if !defined(__cplusplus)