diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-27 20:48:28 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-27 20:48:28 +0100 |
commit | 3e76ba3feb63899c246b4f310a791ab1606e0ee0 (patch) | |
tree | a11abd7c95013c8d416f50506e5dfcc402a32aed | |
parent | fix errors and warnings (diff) | |
download | slibc-3e76ba3feb63899c246b4f310a791ab1606e0ee0.tar.gz slibc-3e76ba3feb63899c246b4f310a791ab1606e0ee0.tar.bz2 slibc-3e76ba3feb63899c246b4f310a791ab1606e0ee0.tar.xz |
fix punctuation
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
-rw-r--r-- | include/stdio.h | 8 | ||||
-rw-r--r-- | src/stdio/printf.c | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/include/stdio.h b/include/stdio.h index 67ec7a3..6c51de0 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -361,7 +361,7 @@ int asprintf(char** restrict, const char* restrict, ...) * It shall point to a variable whose value is * the allocation size of `*buffer`, or point to * a variable whose value is zero if `*buffer` - * is `NULL` + * is `NULL`. * @param offset The offset in the buffer where the function * shall start the printing. * @param secure Non-zero if the function must override the @@ -624,7 +624,7 @@ int vasprintf(char** restrict, const char* restrict, va_list) * It shall point to a variable whose value is * the allocation size of `*buffer`, or point to * a variable whose value is zero if `*buffer` - * is `NULL` + * is `NULL`. * @param offset The offset in the buffer where the function * shall start the printing. * @param secure Non-zero if the function must override the @@ -911,7 +911,7 @@ int aswprintf(wchar_t** restrict, const wchar_t* restrict, ...) * It shall point to a variable whose value is * the allocation size of `*buffer`, or point to * a variable whose value is zero if `*buffer` - * is `NULL` + * is `NULL`. * @param offset The offset in the buffer where the function * shall start the printing. * @param secure Non-zero if the function must override the @@ -1153,7 +1153,7 @@ int vaswprintf(wchar_t** restrict, const wchar_t* restrict, va_list) * It shall point to a variable whose value is * the allocation size of `*buffer`, or point to * a variable whose value is zero if `*buffer` - * is `NULL` + * is `NULL`. * @param offset The offset in the buffer where the function * shall start the printing. * @param secure Non-zero if the function must override the diff --git a/src/stdio/printf.c b/src/stdio/printf.c index 0c6d2cf..3245daa 100644 --- a/src/stdio/printf.c +++ b/src/stdio/printf.c @@ -628,7 +628,7 @@ int asprintf(char** restrict buffer, const char* restrict format, ...) * It shall point to a variable whose value is * the allocation size of `*buffer`, or point to * a variable whose value is zero if `*buffer` - * is `NULL` + * is `NULL`. * @param offset The offset in the buffer where the function * shall start the printing. * @param secure Non-zero if the function must override the @@ -915,7 +915,7 @@ int vasprintf(char** restrict buffer, const char* restrict format, va_list args) * It shall point to a variable whose value is * the allocation size of `*buffer`, or point to * a variable whose value is zero if `*buffer` - * is `NULL` + * is `NULL`. * @param offset The offset in the buffer where the function * shall start the printing. * @param secure Non-zero if the function must override the @@ -1177,7 +1177,7 @@ int aswprintf(wchar_t** restrict buffer, const wchar_t* restrict format, ...) * It shall point to a variable whose value is * the allocation size of `*buffer`, or point to * a variable whose value is zero if `*buffer` - * is `NULL` + * is `NULL`. * @param offset The offset in the buffer where the function * shall start the printing. * @param secure Non-zero if the function must override the @@ -1441,7 +1441,7 @@ int vaswprintf(wchar_t** restrict buffer, const wchar_t* restrict format, va_lis * It shall point to a variable whose value is * the allocation size of `*buffer`, or point to * a variable whose value is zero if `*buffer` - * is `NULL` + * is `NULL`. * @param offset The offset in the buffer where the function * shall start the printing. * @param secure Non-zero if the function must override the |