Changeset bab5c5fa in rtems for cpukit/libmisc/shell/shell_makeargs.c
- Timestamp:
- 03/12/10 16:26:16 (12 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- 88353c4
- Parents:
- 3c02c9dd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libmisc/shell/shell_makeargs.c
r3c02c9dd rbab5c5fa 35 35 while ( *ch ) { 36 36 37 while ( isspace(( int)*ch) ) ch++;37 while ( isspace((unsigned char)*ch) ) ch++; 38 38 39 39 if ( *ch == '\0' ) … … 45 45 } else { 46 46 argv_p[ argc++ ] = ch; 47 while ( ( *ch == '\0' ) && ( !isspace(( int)*ch) ) ) ch++;47 while ( ( *ch == '\0' ) && ( !isspace((unsigned char)*ch) ) ) ch++; 48 48 } 49 49
Note: See TracChangeset
for help on using the changeset viewer.