diff options
| author | christos <christos@NetBSD.org> | 2005-03-30 03:47:11 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2005-03-30 03:47:11 +0000 |
| commit | eb808713b7ccc3c75302bc9b241fd2a671828410 (patch) | |
| tree | 77e38a2f348e7fd6053d90ee6bd1fbd6a8c03c46 /include | |
| parent | 8ec5371f0200a33ac81fa0279d9d9a2da019790f (diff) | |
PR/29826: J. T. Conklin: Add wcsftime(3) (from FreeBSD)
Diffstat (limited to 'include')
| -rw-r--r-- | include/wchar.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/wchar.h b/include/wchar.h index aa6e69f3dbf..a577ae400f0 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -1,4 +1,4 @@ -/* $NetBSD: wchar.h,v 1.21 2005/02/03 04:39:32 perry Exp $ */ +/* $NetBSD: wchar.h,v 1.22 2005/03/30 03:47:11 christos Exp $ */ /*- * Copyright (c)1999 Citrus Project, @@ -93,6 +93,8 @@ typedef _BSD_SIZE_T_ size_t; #undef _BSD_SIZE_T_ #endif +struct tm; + __BEGIN_DECLS wint_t btowc(int); size_t mbrlen(const char * __restrict, size_t, mbstate_t * __restrict); @@ -108,6 +110,8 @@ int wcscmp(const wchar_t *, const wchar_t *); int wcscoll(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 wcslen(const wchar_t *); wchar_t *wcsncat(wchar_t * __restrict, const wchar_t * __restrict, size_t); int wcsncmp(const wchar_t *, const wchar_t *, size_t); |
