Changeset 5b303ba in mainline for kernel/generic/src/printf/vsnprintf.c
- Timestamp:
- 2007-04-07T17:57:07Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3dbe2d1f
- Parents:
- be66dee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/printf/vsnprintf.c
rbe66dee r5b303ba 43 43 }; 44 44 45 int vsnprintf_write(const char *str, size_t count, struct vsnprintf_data *data);46 47 45 /** Write string to given buffer. 48 46 * Write at most data->size characters including trailing zero. According to C99, snprintf() has to return number … … 55 53 * @return number of characters to print (not characters really printed!) 56 54 */ 57 int vsnprintf_write(const char *str, size_t count, struct vsnprintf_data *data)55 static int vsnprintf_write(const char *str, size_t count, struct vsnprintf_data *data) 58 56 { 59 57 size_t i;
Note:
See TracChangeset
for help on using the changeset viewer.