├── CMakeLists.txt ├── Makefile ├── README.md ├── doc └── WCRT-1.12.chm ├── examples ├── blzpack.exe ├── hello.exe ├── hellowin.exe ├── snip.exe └── tgunzip.exe ├── include ├── assert.h ├── ctype.h ├── debugf.h ├── math.h ├── stdio.h ├── stdlib.h ├── string.h ├── time.h └── wchar.h ├── lib └── wcrt.lib ├── src ├── CMakeLists.txt ├── _fpinit.h ├── _heap.c ├── _heap.h ├── _initterm.c ├── _initterm.h ├── _printf.c ├── _printf.h ├── _scanf.c ├── _scanf.h ├── abort.c ├── amd64 │ ├── _chkstk.asm │ ├── _fpinit.asm │ ├── _ftol.asm │ ├── _pargv.asm │ ├── _pargvw.asm │ ├── _rotl.asm │ ├── _rotr.asm │ ├── abs.asm │ ├── acos.asm │ ├── acosf.asm │ ├── asin.asm │ ├── asinf.asm │ ├── atan.asm │ ├── atan2.asm │ ├── atan2f.asm │ ├── atanf.asm │ ├── ceil.asm │ ├── cos.asm │ ├── cosf.asm │ ├── cosh.asm │ ├── exp.asm │ ├── exp2.asm │ ├── fabs.asm │ ├── fabsf.asm │ ├── floor.asm │ ├── ldexp.asm │ ├── ldexpf.asm │ ├── log.asm │ ├── log10.asm │ ├── log10f.asm │ ├── log2.asm │ ├── log2f.asm │ ├── logf.asm │ ├── pow.asm │ ├── powf.asm │ ├── round.asm │ ├── sin.asm │ ├── sinf.asm │ ├── sinh.asm │ ├── sqrt.asm │ ├── sqrtf.asm │ ├── strcpy.asm │ ├── strlen.asm │ ├── tan.asm │ ├── tanf.asm │ ├── tanh.asm │ └── trunc.asm ├── asctime.c ├── assert.c ├── atexit.c ├── atexit.h ├── atof.c ├── atoi.c ├── atol.c ├── bsearch.c ├── calloc.c ├── clock.c ├── crt0.c ├── crt0dll.c ├── crt0win.c ├── debugf.c ├── delete.cpp ├── div.c ├── exit.c ├── fclose.c ├── fflush.c ├── fgetc.c ├── fgetpos.c ├── fgets.c ├── fopen.c ├── fprintf.c ├── fputc.c ├── fputs.c ├── fread.c ├── free.c ├── freopen.c ├── fscanf.c ├── fseek.c ├── fsetpos.c ├── ftell.c ├── fwrite.c ├── getenv.c ├── gets.c ├── i386 │ ├── _chkstk.asm │ ├── _fpinit.asm │ ├── _ftol.asm │ ├── _pargv.asm │ ├── _pargvw.asm │ ├── _rotl.asm │ ├── _rotr.asm │ ├── abs.asm │ ├── acos.asm │ ├── acosf.asm │ ├── asin.asm │ ├── asinf.asm │ ├── atan.asm │ ├── atan2.asm │ ├── atan2f.asm │ ├── atanf.asm │ ├── ceil.asm │ ├── cos.asm │ ├── cosf.asm │ ├── cosh.asm │ ├── exp.asm │ ├── exp2.asm │ ├── fabs.asm │ ├── fabsf.asm │ ├── floor.asm │ ├── ldexp.asm │ ├── ldexpf.asm │ ├── log.asm │ ├── log10.asm │ ├── log10f.asm │ ├── log2.asm │ ├── log2f.asm │ ├── logf.asm │ ├── pow.asm │ ├── powf.asm │ ├── round.asm │ ├── sin.asm │ ├── sinf.asm │ ├── sinh.asm │ ├── sqrt.asm │ ├── sqrtf.asm │ ├── strcpy.asm │ ├── strlen.asm │ ├── tan.asm │ ├── tanf.asm │ ├── tanh.asm │ └── trunc.asm ├── isalnum.c ├── isalpha.c ├── iscntrl.c ├── ispunct.c ├── isspace.c ├── isxdigit.c ├── ldiv.c ├── malloc.c ├── memchr.c ├── memcmp.c ├── memcpy.c ├── memmove.c ├── memset.c ├── new.cpp ├── printf.c ├── puts.c ├── qsort.c ├── rand.c ├── rand_r.c ├── rand_s.c ├── realloc.c ├── remove.c ├── rename.c ├── rewind.c ├── scanf.c ├── snprintf.c ├── sprintf.c ├── sscanf.c ├── stdio.c ├── strcat.c ├── strchr.c ├── strcmp.c ├── strcoll.c ├── strcpy.c ├── strcspn.c ├── stricmp.c ├── strlen.c ├── strlwr.c ├── strncat.c ├── strncmp.c ├── strncpy.c ├── strpbrk.c ├── strrchr.c ├── strspn.c ├── strstr.c ├── strtod.c ├── strtok.c ├── strtok_r.c ├── strtol.c ├── strtoul.c ├── strupr.c ├── tmpnam.c ├── tolower.c ├── toupper.c ├── ungetc.c ├── vfprintf.c ├── vprintf.c ├── vsnprintf.c ├── vsprintf.c ├── wcrt0.c ├── wcrt0win.c ├── wcscat.c ├── wcschr.c ├── wcscmp.c ├── wcscoll.c ├── wcscpy.c ├── wcscspn.c ├── wcslen.c ├── wcsncat.c ├── wcsncmp.c ├── wcsncpy.c ├── wcspbrk.c ├── wcsrchr.c ├── wcsspn.c ├── wcsstr.c ├── wcstok.c ├── wmemchr.c ├── wmemcmp.c ├── wmemcpy.c ├── wmemmove.c └── wmemset.c └── test ├── CMakeLists.txt ├── include.h └── stringlength.c /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/README.md -------------------------------------------------------------------------------- /doc/WCRT-1.12.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/doc/WCRT-1.12.chm -------------------------------------------------------------------------------- /examples/blzpack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/examples/blzpack.exe -------------------------------------------------------------------------------- /examples/hello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/examples/hello.exe -------------------------------------------------------------------------------- /examples/hellowin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/examples/hellowin.exe -------------------------------------------------------------------------------- /examples/snip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/examples/snip.exe -------------------------------------------------------------------------------- /examples/tgunzip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/examples/tgunzip.exe -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/debugf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/include/debugf.h -------------------------------------------------------------------------------- /include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/include/math.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/include/string.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/include/time.h -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/include/wchar.h -------------------------------------------------------------------------------- /lib/wcrt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/lib/wcrt.lib -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/_fpinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/_fpinit.h -------------------------------------------------------------------------------- /src/_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/_heap.c -------------------------------------------------------------------------------- /src/_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/_heap.h -------------------------------------------------------------------------------- /src/_initterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/_initterm.c -------------------------------------------------------------------------------- /src/_initterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/_initterm.h -------------------------------------------------------------------------------- /src/_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/_printf.c -------------------------------------------------------------------------------- /src/_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/_printf.h -------------------------------------------------------------------------------- /src/_scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/_scanf.c -------------------------------------------------------------------------------- /src/_scanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/_scanf.h -------------------------------------------------------------------------------- /src/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/abort.c -------------------------------------------------------------------------------- /src/amd64/_chkstk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/_chkstk.asm -------------------------------------------------------------------------------- /src/amd64/_fpinit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/_fpinit.asm -------------------------------------------------------------------------------- /src/amd64/_ftol.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/_ftol.asm -------------------------------------------------------------------------------- /src/amd64/_pargv.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/_pargv.asm -------------------------------------------------------------------------------- /src/amd64/_pargvw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/_pargvw.asm -------------------------------------------------------------------------------- /src/amd64/_rotl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/_rotl.asm -------------------------------------------------------------------------------- /src/amd64/_rotr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/_rotr.asm -------------------------------------------------------------------------------- /src/amd64/abs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/abs.asm -------------------------------------------------------------------------------- /src/amd64/acos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/acos.asm -------------------------------------------------------------------------------- /src/amd64/acosf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/acosf.asm -------------------------------------------------------------------------------- /src/amd64/asin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/asin.asm -------------------------------------------------------------------------------- /src/amd64/asinf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/asinf.asm -------------------------------------------------------------------------------- /src/amd64/atan.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/atan.asm -------------------------------------------------------------------------------- /src/amd64/atan2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/atan2.asm -------------------------------------------------------------------------------- /src/amd64/atan2f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/atan2f.asm -------------------------------------------------------------------------------- /src/amd64/atanf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/atanf.asm -------------------------------------------------------------------------------- /src/amd64/ceil.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/ceil.asm -------------------------------------------------------------------------------- /src/amd64/cos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/cos.asm -------------------------------------------------------------------------------- /src/amd64/cosf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/cosf.asm -------------------------------------------------------------------------------- /src/amd64/cosh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/cosh.asm -------------------------------------------------------------------------------- /src/amd64/exp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/exp.asm -------------------------------------------------------------------------------- /src/amd64/exp2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/exp2.asm -------------------------------------------------------------------------------- /src/amd64/fabs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/fabs.asm -------------------------------------------------------------------------------- /src/amd64/fabsf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/fabsf.asm -------------------------------------------------------------------------------- /src/amd64/floor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/floor.asm -------------------------------------------------------------------------------- /src/amd64/ldexp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/ldexp.asm -------------------------------------------------------------------------------- /src/amd64/ldexpf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/ldexpf.asm -------------------------------------------------------------------------------- /src/amd64/log.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/log.asm -------------------------------------------------------------------------------- /src/amd64/log10.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/log10.asm -------------------------------------------------------------------------------- /src/amd64/log10f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/log10f.asm -------------------------------------------------------------------------------- /src/amd64/log2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/log2.asm -------------------------------------------------------------------------------- /src/amd64/log2f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/log2f.asm -------------------------------------------------------------------------------- /src/amd64/logf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/logf.asm -------------------------------------------------------------------------------- /src/amd64/pow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/pow.asm -------------------------------------------------------------------------------- /src/amd64/powf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/powf.asm -------------------------------------------------------------------------------- /src/amd64/round.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/round.asm -------------------------------------------------------------------------------- /src/amd64/sin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/sin.asm -------------------------------------------------------------------------------- /src/amd64/sinf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/sinf.asm -------------------------------------------------------------------------------- /src/amd64/sinh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/sinh.asm -------------------------------------------------------------------------------- /src/amd64/sqrt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/sqrt.asm -------------------------------------------------------------------------------- /src/amd64/sqrtf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/sqrtf.asm -------------------------------------------------------------------------------- /src/amd64/strcpy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/strcpy.asm -------------------------------------------------------------------------------- /src/amd64/strlen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/strlen.asm -------------------------------------------------------------------------------- /src/amd64/tan.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/tan.asm -------------------------------------------------------------------------------- /src/amd64/tanf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/tanf.asm -------------------------------------------------------------------------------- /src/amd64/tanh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/tanh.asm -------------------------------------------------------------------------------- /src/amd64/trunc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/amd64/trunc.asm -------------------------------------------------------------------------------- /src/asctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/asctime.c -------------------------------------------------------------------------------- /src/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/assert.c -------------------------------------------------------------------------------- /src/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/atexit.c -------------------------------------------------------------------------------- /src/atexit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/atexit.h -------------------------------------------------------------------------------- /src/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/atof.c -------------------------------------------------------------------------------- /src/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/atoi.c -------------------------------------------------------------------------------- /src/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/atol.c -------------------------------------------------------------------------------- /src/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/bsearch.c -------------------------------------------------------------------------------- /src/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/calloc.c -------------------------------------------------------------------------------- /src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/clock.c -------------------------------------------------------------------------------- /src/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/crt0.c -------------------------------------------------------------------------------- /src/crt0dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/crt0dll.c -------------------------------------------------------------------------------- /src/crt0win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/crt0win.c -------------------------------------------------------------------------------- /src/debugf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/debugf.c -------------------------------------------------------------------------------- /src/delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/delete.cpp -------------------------------------------------------------------------------- /src/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/div.c -------------------------------------------------------------------------------- /src/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/exit.c -------------------------------------------------------------------------------- /src/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fclose.c -------------------------------------------------------------------------------- /src/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fflush.c -------------------------------------------------------------------------------- /src/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fgetc.c -------------------------------------------------------------------------------- /src/fgetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fgetpos.c -------------------------------------------------------------------------------- /src/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fgets.c -------------------------------------------------------------------------------- /src/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fopen.c -------------------------------------------------------------------------------- /src/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fprintf.c -------------------------------------------------------------------------------- /src/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fputc.c -------------------------------------------------------------------------------- /src/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fputs.c -------------------------------------------------------------------------------- /src/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fread.c -------------------------------------------------------------------------------- /src/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/free.c -------------------------------------------------------------------------------- /src/freopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/freopen.c -------------------------------------------------------------------------------- /src/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fscanf.c -------------------------------------------------------------------------------- /src/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fseek.c -------------------------------------------------------------------------------- /src/fsetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fsetpos.c -------------------------------------------------------------------------------- /src/ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/ftell.c -------------------------------------------------------------------------------- /src/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/fwrite.c -------------------------------------------------------------------------------- /src/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/getenv.c -------------------------------------------------------------------------------- /src/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/gets.c -------------------------------------------------------------------------------- /src/i386/_chkstk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/_chkstk.asm -------------------------------------------------------------------------------- /src/i386/_fpinit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/_fpinit.asm -------------------------------------------------------------------------------- /src/i386/_ftol.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/_ftol.asm -------------------------------------------------------------------------------- /src/i386/_pargv.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/_pargv.asm -------------------------------------------------------------------------------- /src/i386/_pargvw.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/_pargvw.asm -------------------------------------------------------------------------------- /src/i386/_rotl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/_rotl.asm -------------------------------------------------------------------------------- /src/i386/_rotr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/_rotr.asm -------------------------------------------------------------------------------- /src/i386/abs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/abs.asm -------------------------------------------------------------------------------- /src/i386/acos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/acos.asm -------------------------------------------------------------------------------- /src/i386/acosf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/acosf.asm -------------------------------------------------------------------------------- /src/i386/asin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/asin.asm -------------------------------------------------------------------------------- /src/i386/asinf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/asinf.asm -------------------------------------------------------------------------------- /src/i386/atan.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/atan.asm -------------------------------------------------------------------------------- /src/i386/atan2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/atan2.asm -------------------------------------------------------------------------------- /src/i386/atan2f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/atan2f.asm -------------------------------------------------------------------------------- /src/i386/atanf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/atanf.asm -------------------------------------------------------------------------------- /src/i386/ceil.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/ceil.asm -------------------------------------------------------------------------------- /src/i386/cos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/cos.asm -------------------------------------------------------------------------------- /src/i386/cosf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/cosf.asm -------------------------------------------------------------------------------- /src/i386/cosh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/cosh.asm -------------------------------------------------------------------------------- /src/i386/exp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/exp.asm -------------------------------------------------------------------------------- /src/i386/exp2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/exp2.asm -------------------------------------------------------------------------------- /src/i386/fabs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/fabs.asm -------------------------------------------------------------------------------- /src/i386/fabsf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/fabsf.asm -------------------------------------------------------------------------------- /src/i386/floor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/floor.asm -------------------------------------------------------------------------------- /src/i386/ldexp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/ldexp.asm -------------------------------------------------------------------------------- /src/i386/ldexpf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/ldexpf.asm -------------------------------------------------------------------------------- /src/i386/log.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/log.asm -------------------------------------------------------------------------------- /src/i386/log10.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/log10.asm -------------------------------------------------------------------------------- /src/i386/log10f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/log10f.asm -------------------------------------------------------------------------------- /src/i386/log2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/log2.asm -------------------------------------------------------------------------------- /src/i386/log2f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/log2f.asm -------------------------------------------------------------------------------- /src/i386/logf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/logf.asm -------------------------------------------------------------------------------- /src/i386/pow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/pow.asm -------------------------------------------------------------------------------- /src/i386/powf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/powf.asm -------------------------------------------------------------------------------- /src/i386/round.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/round.asm -------------------------------------------------------------------------------- /src/i386/sin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/sin.asm -------------------------------------------------------------------------------- /src/i386/sinf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/sinf.asm -------------------------------------------------------------------------------- /src/i386/sinh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/sinh.asm -------------------------------------------------------------------------------- /src/i386/sqrt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/sqrt.asm -------------------------------------------------------------------------------- /src/i386/sqrtf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/sqrtf.asm -------------------------------------------------------------------------------- /src/i386/strcpy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/strcpy.asm -------------------------------------------------------------------------------- /src/i386/strlen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/strlen.asm -------------------------------------------------------------------------------- /src/i386/tan.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/tan.asm -------------------------------------------------------------------------------- /src/i386/tanf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/tanf.asm -------------------------------------------------------------------------------- /src/i386/tanh.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/tanh.asm -------------------------------------------------------------------------------- /src/i386/trunc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/i386/trunc.asm -------------------------------------------------------------------------------- /src/isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/isalnum.c -------------------------------------------------------------------------------- /src/isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/isalpha.c -------------------------------------------------------------------------------- /src/iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/iscntrl.c -------------------------------------------------------------------------------- /src/ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/ispunct.c -------------------------------------------------------------------------------- /src/isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/isspace.c -------------------------------------------------------------------------------- /src/isxdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/isxdigit.c -------------------------------------------------------------------------------- /src/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/ldiv.c -------------------------------------------------------------------------------- /src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/malloc.c -------------------------------------------------------------------------------- /src/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/memchr.c -------------------------------------------------------------------------------- /src/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/memcmp.c -------------------------------------------------------------------------------- /src/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/memcpy.c -------------------------------------------------------------------------------- /src/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/memmove.c -------------------------------------------------------------------------------- /src/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/memset.c -------------------------------------------------------------------------------- /src/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/new.cpp -------------------------------------------------------------------------------- /src/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/printf.c -------------------------------------------------------------------------------- /src/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/puts.c -------------------------------------------------------------------------------- /src/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/qsort.c -------------------------------------------------------------------------------- /src/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/rand.c -------------------------------------------------------------------------------- /src/rand_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/rand_r.c -------------------------------------------------------------------------------- /src/rand_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/rand_s.c -------------------------------------------------------------------------------- /src/realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/realloc.c -------------------------------------------------------------------------------- /src/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/remove.c -------------------------------------------------------------------------------- /src/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/rename.c -------------------------------------------------------------------------------- /src/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/rewind.c -------------------------------------------------------------------------------- /src/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/scanf.c -------------------------------------------------------------------------------- /src/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/snprintf.c -------------------------------------------------------------------------------- /src/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/sprintf.c -------------------------------------------------------------------------------- /src/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/sscanf.c -------------------------------------------------------------------------------- /src/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/stdio.c -------------------------------------------------------------------------------- /src/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strcat.c -------------------------------------------------------------------------------- /src/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strchr.c -------------------------------------------------------------------------------- /src/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strcmp.c -------------------------------------------------------------------------------- /src/strcoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strcoll.c -------------------------------------------------------------------------------- /src/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strcpy.c -------------------------------------------------------------------------------- /src/strcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strcspn.c -------------------------------------------------------------------------------- /src/stricmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/stricmp.c -------------------------------------------------------------------------------- /src/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strlen.c -------------------------------------------------------------------------------- /src/strlwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strlwr.c -------------------------------------------------------------------------------- /src/strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strncat.c -------------------------------------------------------------------------------- /src/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strncmp.c -------------------------------------------------------------------------------- /src/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strncpy.c -------------------------------------------------------------------------------- /src/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strpbrk.c -------------------------------------------------------------------------------- /src/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strrchr.c -------------------------------------------------------------------------------- /src/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strspn.c -------------------------------------------------------------------------------- /src/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strstr.c -------------------------------------------------------------------------------- /src/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strtod.c -------------------------------------------------------------------------------- /src/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strtok.c -------------------------------------------------------------------------------- /src/strtok_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strtok_r.c -------------------------------------------------------------------------------- /src/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strtol.c -------------------------------------------------------------------------------- /src/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strtoul.c -------------------------------------------------------------------------------- /src/strupr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/strupr.c -------------------------------------------------------------------------------- /src/tmpnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/tmpnam.c -------------------------------------------------------------------------------- /src/tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/tolower.c -------------------------------------------------------------------------------- /src/toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/toupper.c -------------------------------------------------------------------------------- /src/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/ungetc.c -------------------------------------------------------------------------------- /src/vfprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/vfprintf.c -------------------------------------------------------------------------------- /src/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/vprintf.c -------------------------------------------------------------------------------- /src/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/vsnprintf.c -------------------------------------------------------------------------------- /src/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/vsprintf.c -------------------------------------------------------------------------------- /src/wcrt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcrt0.c -------------------------------------------------------------------------------- /src/wcrt0win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcrt0win.c -------------------------------------------------------------------------------- /src/wcscat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcscat.c -------------------------------------------------------------------------------- /src/wcschr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcschr.c -------------------------------------------------------------------------------- /src/wcscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcscmp.c -------------------------------------------------------------------------------- /src/wcscoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcscoll.c -------------------------------------------------------------------------------- /src/wcscpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcscpy.c -------------------------------------------------------------------------------- /src/wcscspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcscspn.c -------------------------------------------------------------------------------- /src/wcslen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcslen.c -------------------------------------------------------------------------------- /src/wcsncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcsncat.c -------------------------------------------------------------------------------- /src/wcsncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcsncmp.c -------------------------------------------------------------------------------- /src/wcsncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcsncpy.c -------------------------------------------------------------------------------- /src/wcspbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcspbrk.c -------------------------------------------------------------------------------- /src/wcsrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcsrchr.c -------------------------------------------------------------------------------- /src/wcsspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcsspn.c -------------------------------------------------------------------------------- /src/wcsstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcsstr.c -------------------------------------------------------------------------------- /src/wcstok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wcstok.c -------------------------------------------------------------------------------- /src/wmemchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wmemchr.c -------------------------------------------------------------------------------- /src/wmemcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wmemcmp.c -------------------------------------------------------------------------------- /src/wmemcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wmemcpy.c -------------------------------------------------------------------------------- /src/wmemmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wmemmove.c -------------------------------------------------------------------------------- /src/wmemset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/src/wmemset.c -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/test/include.h -------------------------------------------------------------------------------- /test/stringlength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leishen/wcrt/HEAD/test/stringlength.c --------------------------------------------------------------------------------