Changeset 92fd52d7 in mainline for uspace/lib/libc/generic/getopt.c
- Timestamp:
- 2009-04-09T21:16:50Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7afb4a5
- Parents:
- a2c58f6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/getopt.c
ra2c58f6 r92fd52d7 383 383 has_equal++; 384 384 } else 385 current_argv_len = str len(current_argv);385 current_argv_len = str_size(current_argv); 386 386 387 387 for (i = 0; long_options[i].name; i++) { … … 391 391 continue; 392 392 393 if (str len(long_options[i].name) ==393 if (str_size(long_options[i].name) == 394 394 (unsigned)current_argv_len) { 395 395 /* exact match */
Note:
See TracChangeset
for help on using the changeset viewer.