comparison src/xs_support.c @ 218:57231fe14369

Minor fixes
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 15 Dec 2004 11:23:02 +0000
parents 575686094eb1
children df4cb5115322
comparison
equal deleted inserted replaced
217:c1a5b5cf2f28 218:57231fe14369
66 } 66 }
67 67
68 68
69 /* Concatenates a given string into string pointed by *ppResult. 69 /* Concatenates a given string into string pointed by *ppResult.
70 */ 70 */
71 gint th_pstrcat(t_char **ppResult, const gchar *pStr) 71 gint th_pstrcat(gchar **ppResult, const gchar *pStr)
72 { 72 {
73 /* Check the string pointers */ 73 /* Check the string pointers */
74 if (!ppResult || !pStr) return -1; 74 if (!ppResult || !pStr) return -1;
75 75
76 if (*ppResult != NULL) 76 if (*ppResult != NULL)