Ignore:
Timestamp:
Mar 23, 2006 6:03:40 PM (18 years ago)
Author:
bennylp
Message:

Set default option to exclude pj_stricmp_alnum()

File:
1 edited

Legend:

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

    r315 r354  
    370370 *      - (-1)      if not equal. 
    371371 */ 
     372#if defined(PJ_HAS_STRICMP_ALNUM) && PJ_HAS_STRICMP_ALNUM!=0 
    372373PJ_IDECL(int) strnicmp_alnum(const char *str1, const char *str2, 
    373374                             int len); 
     375#else 
     376#define strnicmp_alnum  strnicmp 
     377#endif 
    374378 
    375379/** 
     
    388392 *      - (-1)      if not equal. 
    389393 */ 
     394#if defined(PJ_HAS_STRICMP_ALNUM) && PJ_HAS_STRICMP_ALNUM!=0 
    390395PJ_IDECL(int) pj_stricmp_alnum(const pj_str_t *str1, const pj_str_t *str2); 
     396#else 
     397#define pj_stricmp_alnum    pj_stricmp 
     398#endif 
    391399 
    392400/** 
Note: See TracChangeset for help on using the changeset viewer.