comparison src/xs_support.h @ 206:8b896d461fdb

Trivial fixes and added strncpy replacement.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 15 Dec 2004 10:22:05 +0000
parents 578b71b62eeb
children 575686094eb1
comparison
equal deleted inserted replaced
205:de47d797ee33 206:8b896d461fdb
8 #include "xmms-sid.h" 8 #include "xmms-sid.h"
9 9
10 /* 10 /*
11 * Functions 11 * Functions
12 */ 12 */
13 gint xs_strcalloc(gchar **, const gchar *); 13 gchar xs_strncpy(gchar *, gchar *, size_t);
14 gint xs_strcat(gchar **, const gchar *); 14 gint xs_pstrcpy(gchar **, const gchar *);
15 gint xs_pstrcat(gchar **, const gchar *);
15 gchar *xs_strrchr(gchar *, gchar); 16 gchar *xs_strrchr(gchar *, gchar);
16 inline void xs_findnext(gchar *, guint *); 17 inline void xs_findnext(gchar *, guint *);
17 inline void xs_findeol(gchar *, guint *); 18 inline void xs_findeol(gchar *, guint *);
18 inline void xs_findnum(gchar *, guint *); 19 inline void xs_findnum(gchar *, guint *);
19 20