summaryrefslogtreecommitdiff
path: root/include/wchar.h
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2002-09-11 08:57:11 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2002-09-11 08:57:11 +0000
commit47794211c810893f31fb9ecbf7c31b369c5ac282 (patch)
tree8c2f74f436cd6ea0913a007054c0425995e4696f /include/wchar.h
parent6baa45072660632a1c55aee085ecfa0dd789a0ec (diff)
downloadsrc-test2-47794211c810893f31fb9ecbf7c31b369c5ac282.tar.gz
src-test2-47794211c810893f31fb9ecbf7c31b369c5ac282.zip
Add an implementation of wcsftime() (wide character version of strftime()).
Notes
Notes: svn path=/head/; revision=103218
Diffstat (limited to 'include/wchar.h')
-rw-r--r--include/wchar.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h
index c206ab0500f0..89867ac746cd 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -101,6 +101,7 @@ typedef __wint_t wint_t;
#endif
struct __sFILE;
+struct tm;
__BEGIN_DECLS
wint_t btowc(int);
@@ -127,6 +128,8 @@ wchar_t *wcschr(const wchar_t *, wchar_t);
int wcscmp(const wchar_t *, const wchar_t *);
wchar_t *wcscpy(wchar_t * __restrict, const wchar_t * __restrict);
size_t wcscspn(const wchar_t *, const wchar_t *);
+size_t wcsftime(wchar_t * __restrict, size_t, const wchar_t * __restrict,
+ const struct tm * __restrict);
size_t wcslcat(wchar_t *, const wchar_t *, size_t);
size_t wcslcpy(wchar_t *, const wchar_t *, size_t);
size_t wcslen(const wchar_t *);