Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/yahoo/yahoo_util.h

    rc36f73b rb7d3cc34  
    6161# define y_renew(type, mem, n)  (type *)realloc(mem, n)
    6262
    63 void *y_memdup(const void *addr, int n);
    64 char **y_strsplit(char *str, char *sep, int nelem);
    65 void y_strfreev(char **vector);
     63void * y_memdup(const void * addr, int n);
     64char ** y_strsplit(char * str, char * sep, int nelem);
     65void y_strfreev(char ** vector);
    6666
    67 #ifndef _WIN32
    68 int strncasecmp(const char *s1, const char *s2, size_t n);
    69 int strcasecmp(const char *s1, const char *s2);
     67int strncasecmp(const char * s1, const char * s2, size_t n);
     68int strcasecmp(const char * s1, const char * s2);
    7069
    71 char *strdup(const char *s);
     70char * strdup(const char *s);
    7271
    7372int snprintf(char *str, size_t size, const char *format, ...);
    7473int vsnprintf(char *str, size_t size, const char *format, va_list ap);
    75 #endif
    7674
    7775#endif
     
    9795 * You must free it yourself
    9896 */
    99 char *y_string_append(char *str, char *append);
    100 char *y_str_to_utf8(const char *in);
    101 char *y_utf8_to_str(const char *in);
     97char * y_string_append(char * str, char * append);
     98char * y_str_to_utf8(const char * in);
     99char * y_utf8_to_str(const char * in);
    102100
    103101#endif
Note: See TracChangeset for help on using the changeset viewer.