diff options
| author | christos <christos@NetBSD.org> | 2006-08-22 20:50:46 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-08-22 20:50:46 +0000 |
| commit | 54097ce7af2a6f6914ccd016c860ec1acb60f40b (patch) | |
| tree | c6770f61457e66d780b762e59764e5699d66f91b /include | |
| parent | c10a5d302a8996596c63f3ed2ad334c86ede2bb8 (diff) | |
PR/34238: Aleksey Cheusov: add wcsdup, wcscasecmp and wcsncasecmp functions
Diffstat (limited to 'include')
| -rw-r--r-- | include/wchar.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/wchar.h b/include/wchar.h index 336f540d1a3..e042276c43f 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -1,4 +1,4 @@ -/* $NetBSD: wchar.h,v 1.25 2006/04/15 12:17:22 tnozaki Exp $ */ +/* $NetBSD: wchar.h,v 1.26 2006/08/22 20:50:46 christos Exp $ */ /*- * Copyright (c)1999 Citrus Project, @@ -191,6 +191,9 @@ int vwscanf(const wchar_t * __restrict, _BSD_VA_LIST_); struct tinfo; int t_putws(struct tinfo *, const wchar_t *, int, void (*)(wchar_t, void *), void *); +wchar_t *wcsdup (const wchar_t *); +int wcsncasecmp (const wchar_t *, const wchar_t *, size_t); +int wcscasecmp(const wchar_t *, const wchar_t *); #endif __END_DECLS |
