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/config.h

    r338 r354  
    366366 
    367367 
     368/** 
     369 * Include pj_stricmp_alnum() and pj_strnicmp_alnum(), i.e. custom 
     370 * functions to compare alnum strings. On some systems, they're faster 
     371 * then stricmp/strcasecmp, but they can be slower on other systems. 
     372 * When disabled, pjlib will fallback to stricmp/strnicmp. 
     373 *  
     374 * Default: 0 
     375 */ 
     376#ifndef PJ_HAS_STRICMP_ALNUM 
     377#   define PJ_HAS_STRICMP_ALNUM     0 
     378#endif 
     379 
     380 
    368381/** @} */ 
    369382 
Note: See TracChangeset for help on using the changeset viewer.