Changes in protocols/yahoo/yahoo_util.c [cfc8d58:c36f73b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/yahoo/yahoo_util.c
rcfc8d58 rc36f73b 36 36 #include "yahoo_util.h" 37 37 38 char * y_string_append(char * string, char *append)38 char *y_string_append(char *string, char *append) 39 39 { 40 40 int size = strlen(string) + strlen(append) + 1; 41 char * 41 char *new_string = y_renew(char, string, size); 42 42 43 if (new_string == NULL) {43 if (new_string == NULL) { 44 44 new_string = y_new(char, size); 45 45 strcpy(new_string, string);
Note: See TracChangeset
for help on using the changeset viewer.