Changeset 6b13103 for irc_util.c
- Timestamp:
- 2015-01-16T19:50:23Z (8 years ago)
- Branches:
- master
- Children:
- 1065dd4, eabe6d4
- Parents:
- 6f10697
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_util.c
r6f10697 r6b13103 42 42 43 43 /* \d+ */ 44 if( ! isdigit( *s ) )44 if( !g_ascii_isdigit( *s ) ) 45 45 return SET_INVALID; 46 while( *s && isdigit( *s ) ) s ++;46 while( *s && g_ascii_isdigit( *s ) ) s ++; 47 47 48 48 /* EOS? */ … … 56 56 57 57 /* \d+ */ 58 if( ! isdigit( *s ) )58 if( !g_ascii_isdigit( *s ) ) 59 59 return SET_INVALID; 60 while( *s && isdigit( *s ) ) s ++;60 while( *s && g_ascii_isdigit( *s ) ) s ++; 61 61 62 62 /* EOS */
Note: See TracChangeset
for help on using the changeset viewer.