Changeset 1748
- Timestamp:
- Dec 21, 2004, 2:33:03 AM (21 years ago)
- Location:
- trunk/src/emx/src/lib
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/bsd/string/wcscat.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 27 27 */ 28 28 29 #include "namespace.h" 29 30 #include <sys/cdefs.h> 30 31 #if 0 … … 38 39 39 40 wchar_t * 40 wcscat(s1, s2)41 _STD(wcscat)(s1, s2) 41 42 wchar_t * __restrict s1; 42 43 const wchar_t * __restrict s2; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcschr.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 25 25 */ 26 26 27 #include "namespace.h" 27 28 #include <sys/cdefs.h> 28 29 __FBSDID("$FreeBSD: src/lib/libc/string/wcschr.c,v 1.7 2002/10/23 10:47:47 tjr Exp $"); … … 31 32 32 33 wchar_t * 33 wcschr(const wchar_t *s, wchar_t c)34 _STD(wcschr)(const wchar_t *s, wchar_t c) 34 35 { 35 36 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcscmp.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 35 35 */ 36 36 37 #include "namespace.h" 37 38 #include <sys/cdefs.h> 38 39 #if defined(LIBC_SCCS) && !defined(lint) … … 50 51 */ 51 52 int 52 wcscmp(s1, s2)53 _STD(wcscmp)(s1, s2) 53 54 const wchar_t *s1, *s2; 54 55 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcscoll.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 25 25 */ 26 26 27 #include "namespace.h" 27 28 #include <sys/cdefs.h> 28 29 __FBSDID("$FreeBSD: src/lib/libc/string/wcscoll.c,v 1.3 2004/04/07 09:47:56 tjr Exp $"); … … 32 33 #include <string.h> 33 34 #include <wchar.h> 34 #include "collate.h" 35 /*#include "collate.h"*/ 35 36 36 37 static char *__mbsdup(const wchar_t *); … … 42 43 */ 43 44 int 44 wcscoll(const wchar_t *ws1, const wchar_t *ws2)45 _STD(wcscoll)(const wchar_t *ws1, const wchar_t *ws2) 45 46 { 46 47 char *mbs1, *mbs2; 47 48 int diff, sverrno; 48 49 49 if ( __collate_load_error ||MB_CUR_MAX > 1)50 if (/*__collate_load_error || */MB_CUR_MAX > 1) 50 51 /* 51 52 * Locale has no special collating order, could not be -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcscpy.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 27 27 */ 28 28 29 #include "namespace.h" 29 30 #include <sys/cdefs.h> 30 31 #if 0 … … 38 39 39 40 wchar_t * 40 wcscpy(s1, s2)41 _STD(wcscpy)(s1, s2) 41 42 wchar_t * __restrict s1; 42 43 const wchar_t * __restrict s2; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcscspn.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 27 27 */ 28 28 29 #include "namespace.h" 29 30 #include <sys/cdefs.h> 30 31 #if 0 … … 38 39 39 40 size_t 40 wcscspn(s, set)41 _STD(wcscspn)(s, set) 41 42 const wchar_t *s; 42 43 const wchar_t *set; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcslcat.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 28 28 */ 29 29 30 #include "namespace.h" 30 31 #include <sys/cdefs.h> 31 32 #if 0 … … 47 48 */ 48 49 size_t 49 wcslcat(dst, src, siz)50 _STD(wcslcat)(dst, src, siz) 50 51 wchar_t *dst; 51 52 const wchar_t *src; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcslcpy.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 28 28 */ 29 29 30 #include "namespace.h" 30 31 #include <sys/cdefs.h> 31 32 #if 0 … … 45 46 */ 46 47 size_t 47 wcslcpy(dst, src, siz)48 _STD(wcslcpy)(dst, src, siz) 48 49 wchar_t *dst; 49 50 const wchar_t *src; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcslen.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 27 27 */ 28 28 29 #include "namespace.h" 29 30 #include <sys/cdefs.h> 30 31 #if 0 … … 38 39 39 40 size_t 40 wcslen(s)41 _STD(wcslen)(s) 41 42 const wchar_t *s; 42 43 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcsncat.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 27 27 */ 28 28 29 #include "namespace.h" 29 30 #include <sys/cdefs.h> 30 31 #if 0 … … 38 39 39 40 wchar_t * 40 wcsncat(s1, s2, n)41 _STD(wcsncat)(s1, s2, n) 41 42 wchar_t * __restrict s1; 42 43 const wchar_t * __restrict s2; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcsncmp.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 32 32 */ 33 33 34 #include "namespace.h" 34 35 #include <sys/cdefs.h> 35 36 #if 0 … … 44 45 45 46 int 46 wcsncmp(s1, s2, n)47 _STD(wcsncmp)(s1, s2, n) 47 48 const wchar_t *s1, *s2; 48 49 size_t n; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcsncpy.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 35 35 */ 36 36 37 #include "namespace.h" 37 38 #if 0 38 39 #if defined(LIBC_SCCS) && !defined(lint) … … 50 51 */ 51 52 wchar_t * 52 wcsncpy(wchar_t * __restrict dst, const wchar_t * __restrict src, size_t n)53 _STD(wcsncpy)(wchar_t * __restrict dst, const wchar_t * __restrict src, size_t n) 53 54 { 54 55 if (n != 0) { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcspbrk.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 27 27 */ 28 28 29 #include "namespace.h" 29 30 #include <sys/cdefs.h> 30 31 #if 0 … … 38 39 39 40 wchar_t * 40 wcspbrk(s, set)41 _STD(wcspbrk)(s, set) 41 42 const wchar_t *s; 42 43 const wchar_t *set; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcsrchr.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 25 25 */ 26 26 27 #include "namespace.h" 27 28 #include <sys/cdefs.h> 28 29 __FBSDID("$FreeBSD: src/lib/libc/string/wcsrchr.c,v 1.7 2002/10/23 10:52:04 tjr Exp $"); … … 31 32 32 33 wchar_t * 33 wcsrchr(const wchar_t *s, wchar_t c)34 _STD(wcsrchr)(const wchar_t *s, wchar_t c) 34 35 { 35 36 const wchar_t *last; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcsspn.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 27 27 */ 28 28 29 #include "namespace.h" 29 30 #include <sys/cdefs.h> 30 31 #if 0 … … 38 39 39 40 size_t 40 wcsspn(s, set)41 _STD(wcsspn)(s, set) 41 42 const wchar_t *s; 42 43 const wchar_t *set; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcsstr.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 35 35 */ 36 36 37 #include "namespace.h" 37 38 #if 0 38 39 #if defined(LIBC_SCCS) && !defined(lint) … … 49 50 */ 50 51 wchar_t * 51 wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find)52 _STD(wcsstr)(const wchar_t * __restrict s, const wchar_t * __restrict find) 52 53 { 53 54 wchar_t c, sc; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcstok.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 37 37 */ 38 38 39 #include "namespace.h" 39 40 #include <sys/cdefs.h> 40 41 __FBSDID("$FreeBSD: src/lib/libc/string/wcstok.c,v 1.2 2003/03/12 06:41:49 tjr Exp $"); … … 43 44 44 45 wchar_t * 45 wcstok(wchar_t * __restrict s, const wchar_t * __restrict delim,46 _STD(wcstok)(wchar_t * __restrict s, const wchar_t * __restrict delim, 46 47 wchar_t ** __restrict last) 47 48 { -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/wcswidth.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1747 r1748 40 40 */ 41 41 42 #include "namespace.h" 42 43 #include <sys/cdefs.h> 43 44 __FBSDID("$FreeBSD: src/lib/libc/string/wcswidth.c,v 1.6 2002/08/20 02:06:28 ache Exp $"); … … 46 47 47 48 int 48 wcswidth(const wchar_t *pwcs, size_t n)49 _STD(wcswidth)(const wchar_t *pwcs, size_t n) 49 50 { 50 51 wchar_t wc; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/libc.def
-
Property cvs2svn:cvs-rev
changed from
1.90
to1.91
r1747 r1748 1354 1354 "___libc_GLocaleWCtype" @1369 1355 1355 1356 "__std_wcscat" @1370 1357 "__std_wcschr" @1371 1358 "__std_wcscmp" @1372 1359 "__std_wcscoll" @1373 1360 "__std_wcscpy" @1374 1361 "__std_wcscspn" @1375 1362 "__std_wcslcat" @1376 1363 "__std_wcslcpy" @1377 1364 "__std_wcslen" @1378 1365 "__std_wcsncat" @1379 1366 "__std_wcsncmp" @1380 1367 "__std_wcsncpy" @1381 1368 "__std_wcspbrk" @1382 1369 "__std_wcsrchr" @1383 1370 "__std_wcsspn" @1384 1371 "__std_wcsstr" @1385 1372 "__std_wcstok" @1386 1373 "__std_wcswidth" @1387 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.