Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/yahoo/yahoo_util.c

    rcfc8d58 rc36f73b  
    3636#include "yahoo_util.h"
    3737
    38 char * y_string_append(char * string, char * append)
     38char *y_string_append(char *string, char *append)
    3939{
    4040        int size = strlen(string) + strlen(append) + 1;
    41         char * new_string = y_renew(char, string, size);
     41        char *new_string = y_renew(char, string, size);
    4242
    43         if(new_string == NULL) {
     43        if (new_string == NULL) {
    4444                new_string = y_new(char, size);
    4545                strcpy(new_string, string);
Note: See TracChangeset for help on using the changeset viewer.