Changeset 1849
- Timestamp:
- Mar 14, 2005, 12:36:54 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/sys/__init.c
-
Property cvs2svn:cvs-rev
changed from
1.20
to1.21
r1848 r1849 107 107 for (;;) 108 108 { 109 if ( *src == '"')109 if (!quote ? (*src == '"' || *src == '\'') : *src == quote) 110 110 { 111 111 while (bs >= 2) … … 115 115 } 116 116 if (bs & 1) 117 PUTC( '"');117 PUTC(*src); 118 118 else 119 119 { 120 quote = !quote;120 quote = quote ? 0 : *src; 121 121 if (flag_ptr != NULL) 122 122 *flag_ptr |= _ARG_DQUOTE; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.