Changes in uspace/lib/c/generic/io/snprintf.c [a35b458:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/snprintf.c
ra35b458 r9d58539 50 50 va_list args; 51 51 va_start(args, fmt); 52 52 53 53 int ret = vsnprintf(str, size, fmt, args); 54 54 55 55 va_end(args); 56 56 57 57 return ret; 58 58 }
Note:
See TracChangeset
for help on using the changeset viewer.