Ignore:
Timestamp:
Jul 18, 2012 7:52:33 AM (12 years ago)
Author:
ming
Message:

Fixed #1556: Fix From/To? tag and Via branch comparison to be case insensitive

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/guid.h

    r3553 r4208  
    8484 
    8585/** 
     86 * Create a globally unique string in lowercase, which length is 
     87 * PJ_GUID_STRING_LENGTH characters. Caller is responsible for preallocating 
     88 * the storage used in the string. 
     89 * 
     90 * @param str       The string to store the result. 
     91 * 
     92 * @return          The string. 
     93 */ 
     94PJ_DECL(pj_str_t*) pj_generate_unique_string_lower(pj_str_t *str); 
     95 
     96/** 
    8697 * Generate a unique string. 
    8798 * 
     
    90101 */ 
    91102PJ_DECL(void) pj_create_unique_string(pj_pool_t *pool, pj_str_t *str); 
     103 
     104/** 
     105 * Generate a unique string in lowercase. 
     106 * 
     107 * @param pool      Pool to allocate memory from. 
     108 * @param str       The string. 
     109 */ 
     110PJ_DECL(void) pj_create_unique_string_lower(pj_pool_t *pool, pj_str_t *str); 
    92111 
    93112 
Note: See TracChangeset for help on using the changeset viewer.