From 42c9f525369ba06742d53d7a89ad00153b317de6 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 13 Feb 2006 08:14:12 +0000 Subject: Add files for IMA. Yes, I know it's a hack and no, I won't split the affected files --- libc/misc/wchar/_wchar_utf8sntowcs.c | 8 ++++++++ libc/misc/wchar/_wchar_wcsntoutf8s.c | 8 ++++++++ libc/misc/wchar/btowc.c | 8 ++++++++ libc/misc/wchar/iconv.c | 8 ++++++++ libc/misc/wchar/mbrlen.c | 8 ++++++++ libc/misc/wchar/mbrtowc.c | 8 ++++++++ libc/misc/wchar/mbsinit.c | 8 ++++++++ libc/misc/wchar/mbsnrtowcs.c | 8 ++++++++ libc/misc/wchar/mbsrtowcs.c | 8 ++++++++ libc/misc/wchar/wcrtomb.c | 8 ++++++++ libc/misc/wchar/wcsnrtombs.c | 8 ++++++++ libc/misc/wchar/wcsrtombs.c | 8 ++++++++ libc/misc/wchar/wcswidth.c | 8 ++++++++ libc/misc/wchar/wctob.c | 8 ++++++++ libc/misc/wchar/wcwidth.c | 8 ++++++++ 15 files changed, 120 insertions(+) create mode 100644 libc/misc/wchar/_wchar_utf8sntowcs.c create mode 100644 libc/misc/wchar/_wchar_wcsntoutf8s.c create mode 100644 libc/misc/wchar/btowc.c create mode 100644 libc/misc/wchar/iconv.c create mode 100644 libc/misc/wchar/mbrlen.c create mode 100644 libc/misc/wchar/mbrtowc.c create mode 100644 libc/misc/wchar/mbsinit.c create mode 100644 libc/misc/wchar/mbsnrtowcs.c create mode 100644 libc/misc/wchar/mbsrtowcs.c create mode 100644 libc/misc/wchar/wcrtomb.c create mode 100644 libc/misc/wchar/wcsnrtombs.c create mode 100644 libc/misc/wchar/wcsrtombs.c create mode 100644 libc/misc/wchar/wcswidth.c create mode 100644 libc/misc/wchar/wctob.c create mode 100644 libc/misc/wchar/wcwidth.c (limited to 'libc/misc/wchar') diff --git a/libc/misc/wchar/_wchar_utf8sntowcs.c b/libc/misc/wchar/_wchar_utf8sntowcs.c new file mode 100644 index 000000000..a01990ebd --- /dev/null +++ b/libc/misc/wchar/_wchar_utf8sntowcs.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__wchar_utf8sntowcs +#include "wchar.c" diff --git a/libc/misc/wchar/_wchar_wcsntoutf8s.c b/libc/misc/wchar/_wchar_wcsntoutf8s.c new file mode 100644 index 000000000..a63aa9114 --- /dev/null +++ b/libc/misc/wchar/_wchar_wcsntoutf8s.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__wchar_wcsntoutf8s +#include "wchar.c" diff --git a/libc/misc/wchar/btowc.c b/libc/misc/wchar/btowc.c new file mode 100644 index 000000000..d5e60ce6c --- /dev/null +++ b/libc/misc/wchar/btowc.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_btowc +#include "wchar.c" diff --git a/libc/misc/wchar/iconv.c b/libc/misc/wchar/iconv.c new file mode 100644 index 000000000..e6e8ea881 --- /dev/null +++ b/libc/misc/wchar/iconv.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_iconv +#include "wchar.c" diff --git a/libc/misc/wchar/mbrlen.c b/libc/misc/wchar/mbrlen.c new file mode 100644 index 000000000..01bd31ebc --- /dev/null +++ b/libc/misc/wchar/mbrlen.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_mbrlen +#include "wchar.c" diff --git a/libc/misc/wchar/mbrtowc.c b/libc/misc/wchar/mbrtowc.c new file mode 100644 index 000000000..76ce28a71 --- /dev/null +++ b/libc/misc/wchar/mbrtowc.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_mbrtowc +#include "wchar.c" diff --git a/libc/misc/wchar/mbsinit.c b/libc/misc/wchar/mbsinit.c new file mode 100644 index 000000000..23aaac50f --- /dev/null +++ b/libc/misc/wchar/mbsinit.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_mbsinit +#include "wchar.c" diff --git a/libc/misc/wchar/mbsnrtowcs.c b/libc/misc/wchar/mbsnrtowcs.c new file mode 100644 index 000000000..9b407c1d8 --- /dev/null +++ b/libc/misc/wchar/mbsnrtowcs.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_mbsnrtowcs +#include "wchar.c" diff --git a/libc/misc/wchar/mbsrtowcs.c b/libc/misc/wchar/mbsrtowcs.c new file mode 100644 index 000000000..dd47a91a3 --- /dev/null +++ b/libc/misc/wchar/mbsrtowcs.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_mbsrtowcs +#include "wchar.c" diff --git a/libc/misc/wchar/wcrtomb.c b/libc/misc/wchar/wcrtomb.c new file mode 100644 index 000000000..91eb3062d --- /dev/null +++ b/libc/misc/wchar/wcrtomb.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcrtomb +#include "wchar.c" diff --git a/libc/misc/wchar/wcsnrtombs.c b/libc/misc/wchar/wcsnrtombs.c new file mode 100644 index 000000000..af9d6c33d --- /dev/null +++ b/libc/misc/wchar/wcsnrtombs.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcsnrtombs +#include "wchar.c" diff --git a/libc/misc/wchar/wcsrtombs.c b/libc/misc/wchar/wcsrtombs.c new file mode 100644 index 000000000..e5b6c0b38 --- /dev/null +++ b/libc/misc/wchar/wcsrtombs.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcsrtombs +#include "wchar.c" diff --git a/libc/misc/wchar/wcswidth.c b/libc/misc/wchar/wcswidth.c new file mode 100644 index 000000000..3d955a21c --- /dev/null +++ b/libc/misc/wchar/wcswidth.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcswidth +#include "wchar.c" diff --git a/libc/misc/wchar/wctob.c b/libc/misc/wchar/wctob.c new file mode 100644 index 000000000..88d31f5ad --- /dev/null +++ b/libc/misc/wchar/wctob.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wctob +#include "wchar.c" diff --git a/libc/misc/wchar/wcwidth.c b/libc/misc/wchar/wcwidth.c new file mode 100644 index 000000000..6c4a34476 --- /dev/null +++ b/libc/misc/wchar/wcwidth.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcwidth +#include "wchar.c" -- cgit v1.2.3