Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/misc.c

    r47ab9a9 r73f0a01  
    187187                                } else if (g_strncasecmp(cs + 1, "br", taglen) == 0) {
    188188                                        *(s++) = '\n';
    189                                 } else if (g_strncasecmp(cs + 1, "br/", taglen) == 0) {
    190                                         *(s++) = '\n';
    191                                 } else if (g_strncasecmp(cs + 1, "br /", taglen) == 0) {
    192                                         *(s++) = '\n';
    193189                                }
    194190                                in++;
     
    299295
    300296/* Warning: This one explodes the string. Worst-cases can make the string 3x its original size! */
    301 /* This function is safe, but make sure you call it safely as well! */
     297/* This fuction is safe, but make sure you call it safely as well! */
    302298void http_encode(char *s)
    303299{
     
    771767}
    772768
    773 /* Filters all the characters in 'blacklist' replacing them with 'replacement'.
    774  * Modifies the string in-place and returns the string itself.
    775  * For the opposite, use g_strcanon() */
    776 char *str_reject_chars(char *string, const char *reject, char replacement)
    777 {
    778         char *c = string;
    779 
    780         while (*c) {
    781                 c += strcspn(c, reject);
    782                 if (*c) {
    783                         *c = replacement;
    784                 }
    785         }
    786 
    787         return string;
    788 }
Note: See TracChangeset for help on using the changeset viewer.