diff options
| author | tshiozak <tshiozak@NetBSD.org> | 2003-03-05 20:18:14 +0000 |
|---|---|---|
| committer | tshiozak <tshiozak@NetBSD.org> | 2003-03-05 20:18:14 +0000 |
| commit | 326ed3687488cf8a25a2bbefe9ba5711d9458301 (patch) | |
| tree | 2e2760578db61bcd6260f1f71efaf97505302b46 /include | |
| parent | 4c320740d247e528bdc4ea72ff30d9960a72fe0d (diff) | |
changes related to lib/20576 and lib/20577.
- add wcstok() and wcswcs(),
- add wcstok(3),
- move btowc() and wctob() into each ctype modules,
- bump ctype interface ABI version,
- bump i18n modules' minor and
- update sets.
and fix a stupid bug in _RUNE_ISCACHED macro.
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 48ca747febd..aa88dae7280 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -1,4 +1,4 @@ -/* $NetBSD: wchar.h,v 1.14 2003/03/03 07:39:53 tshiozak Exp $ */ +/* $NetBSD: wchar.h,v 1.15 2003/03/05 20:18:15 tshiozak Exp $ */ /*- * Copyright (c)1999 Citrus Project, @@ -127,7 +127,10 @@ size_t wcsrtombs __P((char * __restrict, const wchar_t ** __restrict, size_t, mbstate_t * __restrict)); size_t wcsspn __P((const wchar_t *, const wchar_t *)); wchar_t *wcsstr __P((const wchar_t *, const wchar_t *)); +wchar_t *wcstok __P((wchar_t * __restrict, const wchar_t * __restrict, + wchar_t ** __restrict)); size_t wcsxfrm __P((wchar_t *, const wchar_t *, size_t)); +wchar_t *wcswcs __P((const wchar_t *, const wchar_t *)); wchar_t *wmemchr __P((const wchar_t *, wchar_t, size_t)); int wmemcmp __P((const wchar_t *, const wchar_t *, size_t)); wchar_t *wmemcpy __P((wchar_t * __restrict, const wchar_t * __restrict, |
