Changeset 63
- Timestamp:
- Nov 20, 2005 7:57:22 PM (19 years ago)
- Location:
- pjproject/trunk/pjlib-util
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib-util/build/pjlib_util.dsp
r33 r63 94 94 # Begin Source File 95 95 96 SOURCE="..\src\pjlib-util\string.c" 97 # End Source File 98 # Begin Source File 99 96 100 SOURCE="..\src\pjlib-util\stun.c" 97 101 # End Source File … … 126 130 # Begin Source File 127 131 132 SOURCE="..\include\pjlib-util\string.h" 133 # End Source File 134 # Begin Source File 135 128 136 SOURCE="..\include\pjlib-util\stun.h" 129 137 # End Source File -
pjproject/trunk/pjlib-util/include/pjlib-util/scanner.h
r51 r63 196 196 * @param cis The scanner character specification. 197 197 * @param c The character to check for matching. 198 * 199 * @return Non-zero if match (not necessarily one). 198 200 */ 199 201 PJ_INLINE(int) pj_cis_match( const pj_cis_t *cis, int c ) -
pjproject/trunk/pjlib-util/src/pjlib-util/scanner.c
r56 r63 48 48 if ((cis_buf->use_mask & (1 << i)) == 0) { 49 49 cis->cis_id = i; 50 cis_buf->use_mask |= (1 << i); 50 51 return PJ_SUCCESS; 51 52 }
Note: See TracChangeset
for help on using the changeset viewer.