~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/m_string.h

Fixed strnmov macro.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
extern void (*my_str_free)(void *);
59
59
 
60
60
#define strmov(A,B) stpcpy((A),(B))
61
 
#define strnmov(A,B) stpncpy((A),(B))
 
61
#define strnmov(A,B,C) stpncpy((A),(B),(C))
62
62
 
63
63
#define strmov_overlapp(A,B) stpcpy(A,B)
64
64
#define strmake_overlapp(A,B,C) strmake(A,B,C)