pike.git/
src/
modules/
Parser/
pike.c
Branch:
Tag:
Non-build tags
All tags
No tags
2016-01-12
2016-01-12 18:09:27 by Per Hedbor <ph@opera.com>
01b9216dc7703fe549b03c4a7fa322d3f6af6371 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.1
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=='$')