Changes in uspace/app/bdsh/cmds/modules/printf/printf.c [a35b458:eb748a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/printf/printf.c
ra35b458 reb748a0 127 127 128 128 /* Count the arguments */ 129 for (argc = 0; argv[argc] != NULL; argc ++); 129 argc = 0; 130 while (argv[argc] != NULL) 131 argc++; 130 132 131 133 if (argc < 2) {
Note:
See TracChangeset
for help on using the changeset viewer.