OSDN Git Service

2002-09-20 Jeff Johnston <jjohnstn@redhat.com>
authorjjohnstn <jjohnstn>
Fri, 20 Sep 2002 20:13:09 +0000 (20:13 +0000)
committerjjohnstn <jjohnstn>
Fri, 20 Sep 2002 20:13:09 +0000 (20:13 +0000)
commite46e70209292c70bcdd84396cf61a19bc71d741e
tree5272c183158baf385cdd7deb6d935a4a5d234db0
parentaee6610f8c3455faabca012a71e5f61927335bea
2002-09-20  Jeff Johnston  <jjohnstn@redhat.com>

        * libc/ctype/Makefile.am: Add new files.
        * libc/ctype/Makefile.in: Regenerated.
        * libc/ctype/ctype.tex: Add new iswxxxx, towxxxx, wctype,
        and wctrans functions to documentation index.
        * libc/ctype/iswalnum.c: New file.
        * libc/ctype/iswalpha.c: Ditto.
        * libc/ctype/iswblank.c: Ditto.
        * libc/ctype/iswcntrl.c: Ditto.
        * libc/ctype/iswctype.c: Ditto.
        * libc/ctype/iswdigit.c: Ditto.
        * libc/ctype/iswgraph.c: Ditto.
        * libc/ctype/iswlower.c: Ditto.
        * libc/ctype/iswprint.c: Ditto.
        * libc/ctype/iswpunct.c: Ditto.
        * libc/ctype/iswspace.c: Ditto.
        * libc/ctype/iswupper.c: Ditto.
        * libc/ctype/iswxdigit.c: Ditto.
        * libc/ctype/jp2uc.c: Ditto.
        * libc/ctype/jp2uc.h: Ditto.
        * libc/ctype/local.h: Ditto.
        * libc/ctype/towctrans.c: Ditto.
        * libc/ctype/towlower.c: Ditto.
        * libc/ctype/towupper.c: Ditto.
        * libc/ctype/utf8alpha.h: Ditto.
        * libc/ctype/utf8print.h: Ditto.
        * libc/ctype/utf8punct.h: Ditto.
        * libc/ctype/wctrans.c: Ditto.
        * libc/ctype/wctype.c: Ditto.
        * libc/locale/locale.c (__lc_ctype): New external array to
        replace static lc_ctype array.
        * libc/stdlib/mbtowc_r.c: Use __lc_ctype to check current lc_ctype
        rather than reentrancy structure's _current_locale field.
        * libc/stdlib/wctomb_r.c: Ditto.
31 files changed:
newlib/ChangeLog
newlib/libc/ctype/Makefile.am
newlib/libc/ctype/Makefile.in
newlib/libc/ctype/ctype.tex
newlib/libc/ctype/iswalnum.c [new file with mode: 0644]
newlib/libc/ctype/iswalpha.c [new file with mode: 0644]
newlib/libc/ctype/iswblank.c [new file with mode: 0644]
newlib/libc/ctype/iswcntrl.c [new file with mode: 0644]
newlib/libc/ctype/iswctype.c [new file with mode: 0644]
newlib/libc/ctype/iswdigit.c [new file with mode: 0644]
newlib/libc/ctype/iswgraph.c [new file with mode: 0644]
newlib/libc/ctype/iswlower.c [new file with mode: 0644]
newlib/libc/ctype/iswprint.c [new file with mode: 0644]
newlib/libc/ctype/iswpunct.c [new file with mode: 0644]
newlib/libc/ctype/iswspace.c [new file with mode: 0644]
newlib/libc/ctype/iswupper.c [new file with mode: 0644]
newlib/libc/ctype/iswxdigit.c [new file with mode: 0644]
newlib/libc/ctype/jp2uc.c [new file with mode: 0644]
newlib/libc/ctype/jp2uc.h [new file with mode: 0644]
newlib/libc/ctype/local.h [new file with mode: 0644]
newlib/libc/ctype/towctrans.c [new file with mode: 0644]
newlib/libc/ctype/towlower.c [new file with mode: 0644]
newlib/libc/ctype/towupper.c [new file with mode: 0644]
newlib/libc/ctype/utf8alpha.h [new file with mode: 0644]
newlib/libc/ctype/utf8print.h [new file with mode: 0644]
newlib/libc/ctype/utf8punct.h [new file with mode: 0644]
newlib/libc/ctype/wctrans.c [new file with mode: 0644]
newlib/libc/ctype/wctype.c [new file with mode: 0644]
newlib/libc/locale/locale.c
newlib/libc/stdlib/mbtowc_r.c
newlib/libc/stdlib/wctomb_r.c