Branch: Tag:

2016-01-12

2016-01-12 18:09:27 by Per Hedbor <ph@opera.com>

inline is part of c99

We do have.. excessive amounts of inline, incidentally. :)

40:    *! @[Parser.Pike], @[_C].    */    - INLINE static int m_isidchar( unsigned int x ) + inline static int m_isidchar( unsigned int x )   {    if( (x >= 'a' && x <= 'z') || (x>='A' && x<='Z') || x>128 || x == '_')    return 1;    return 0;   }    - INLINE static int m_isidchar2( unsigned int x ) + inline static int m_isidchar2( unsigned int x )   {    if( (x >= 'a' && x <= 'z') || (x>='A' && x<='Z') || x>128 || x=='_' ||    (x>='0'&&x<='9')||x=='$')