├── .gitignore ├── ACKNOWLEDGEMENT ├── COPYING ├── DEPENDENCIES ├── Makefile ├── README ├── TODO ├── doc └── info │ ├── appx │ ├── fdl.texinfo │ ├── free-software-needs-free-documentation.texinfo │ └── gpl.texinfo │ ├── chap │ ├── error-reporting.texinfo │ ├── integer-types.texinfo │ ├── introduction.texinfo │ ├── language-facilities.texinfo │ └── memory-allocation.texinfo │ ├── content.texinfo │ ├── hardcopy-copying.texinfo │ ├── reusable │ ├── macros.texinfo │ ├── paper.texinfo │ └── titlepage.texinfo │ ├── slibc.texinfo │ └── titlepage-data.texinfo ├── gen └── bits │ ├── intconf.c │ └── intconf.h ├── include ├── alloca.h ├── arpa │ └── inet.h ├── assert.h ├── bits │ ├── stdarg.h │ └── types.h ├── ctype.h ├── err.h ├── errno.h ├── error.h ├── fcntl.h ├── inttypes.h ├── iso646.h ├── libgen.h ├── malloc.h ├── memory.h ├── obstack.h ├── slibc-alloc.h ├── slibc-error.h ├── slibc-human.h ├── slibc-print.h ├── slibc │ ├── attributes.h │ ├── c-version.h │ ├── features.h │ ├── internals.h │ ├── portability.h │ └── version.h ├── stdalign.h ├── stdarg.h ├── stdbool.h ├── stddef.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── stdnoreturn.h ├── string.h ├── strings.h ├── sys │ ├── errno.h │ ├── fcntl.h │ ├── poll.h │ ├── signal.h │ ├── soundcard.h │ ├── stat.h │ ├── stropts.h │ ├── syslog.h │ ├── termios.h │ ├── ucontext.h │ └── vt.h ├── unistd.h ├── wait.h └── wchar.h └── src ├── alloca └── needstack.c ├── arpa └── inet │ ├── htonl.c │ ├── htonll.c │ ├── htons.c │ ├── ntohl.c │ ├── ntohll.c │ └── ntohs.c ├── assert.c ├── ctype.c ├── err ├── err.c ├── errx.c ├── verr.c ├── verrx.c ├── vwarn.c ├── vwarnx.c ├── warn.c └── warnx.c ├── errno └── variables.c ├── error ├── error.c ├── error_at_line.c ├── variables.c ├── verror.c └── verror_at_line.c ├── fcntl ├── creat.c └── reopen.c ├── inttypes ├── imaxabs.c └── imaxdiv.c ├── libgen ├── basename_xpg.c ├── cleanname.c └── dirname.c ├── malloc.c ├── malloc ├── aligned_alloc.c ├── cfree.c ├── free.c ├── malloc_usable_size.c ├── posix_memalign.c └── realloc.c ├── slibc-alloc.c ├── slibc-error.c ├── slibc-human ├── escape.c ├── escapes.h ├── humanmode.c ├── humansize.c ├── machinemode.c ├── machinesize.c └── unescape.c ├── slibc-print.c ├── stdio ├── printf.c └── scanf.c ├── stdlib ├── abs │ ├── abs.c │ ├── labs.c │ └── llabs.c ├── abspath.c ├── atof.c ├── atoi.c ├── atol.c ├── atoll.c ├── atoq.c ├── bsearch.c ├── clearenv.c ├── div │ ├── div.c │ ├── ldiv.c │ └── lldiv.c ├── getenv.c └── relpath.c ├── string ├── basename_gnu.c ├── mem │ ├── memcasecmp.c │ ├── memcasemem.c │ ├── memccpy.c │ ├── memchr.c │ ├── memcmove.c │ ├── memcmp.c │ ├── memcpy.c │ ├── memdup.c │ ├── memmem.c │ ├── memmove.c │ ├── mempcpy.c │ ├── mempmove.c │ ├── memrchr.c │ ├── memset.c │ ├── rawmemchr.c │ └── substring.h ├── memfrob.c ├── new.c ├── str │ ├── rawstrcasestr.c │ ├── rawstrstr.c │ ├── stpcpy.c │ ├── stpmove.c │ ├── strcasecmp.c │ ├── strcaseends.c │ ├── strcasestarts.c │ ├── strcasestr.c │ ├── strcat.c │ ├── strccpy.c │ ├── strchr.c │ ├── strchrnul.c │ ├── strcmove.c │ ├── strcmp.c │ ├── strcpy.c │ ├── strcspn.c │ ├── strdup.c │ ├── strends.c │ ├── strlen.c │ ├── strmove.c │ ├── strpbrk.c │ ├── strrchr.c │ ├── strsep.c │ ├── strset.c │ ├── strspn.c │ ├── strstarts.c │ ├── strstr.c │ ├── strstrcpy.c │ ├── strstrmove.c │ ├── strtok.c │ └── strtok_r.c ├── strerror │ ├── strerror.c │ ├── strerror_l.c │ ├── strerror_r_gnu.c │ └── strerror_r_xsi.c ├── strfry.c └── strn │ ├── stpncpy.c │ ├── stpnmove.c │ ├── strcncpy.c │ ├── strcnmove.c │ ├── strncasecmp.c │ ├── strncasestr.c │ ├── strncat.c │ ├── strncmp.c │ ├── strncpy.c │ ├── strndup.c │ ├── strnlen.c │ ├── strnmove.c │ ├── strnstr.c │ ├── strstrncpy.c │ └── strstrnmove.c ├── strings ├── README ├── bcmp.c ├── bcopy.c ├── bzero.c ├── explicit_bzero.c ├── ffs.c ├── ffsl.c ├── ffsll.c ├── index.c └── rindex.c ├── unistd ├── daemon.c ├── daemonise.c ├── exec.c ├── execat.c ├── fexec.c ├── getpass.c ├── halt.c ├── hcf.c ├── preadn.c ├── pwriten.c ├── readn.c ├── searchpath.c ├── searchpath2.c ├── searchpath3.c └── writen.c └── wchar ├── new.c ├── rawwcscasestr.c ├── rawwcsstr.c ├── rawwmemchr.c ├── wcpcpy.c ├── wcpmove.c ├── wcpncpy.c ├── wcpnmove.c ├── wcscasecmp.c ├── wcscaseends.c ├── wcscasestarts.c ├── wcscasestr.c ├── wcscat.c ├── wcsccpy.c ├── wcschr.c ├── wcschrnul.c ├── wcscmove.c ├── wcscmp.c ├── wcscncpy.c ├── wcscnmove.c ├── wcscpy.c ├── wcscspn.c ├── wcsdup.c ├── wcsends.c ├── wcslen.c ├── wcsmove.c ├── wcsncasecmp.c ├── wcsncasestr.c ├── wcsncat.c ├── wcsncmp.c ├── wcsncpy.c ├── wcsndup.c ├── wcsnlen.c ├── wcsnmove.c ├── wcsnstr.c ├── wcspbrk.c ├── wcsrchr.c ├── wcssep.c ├── wcsset.c ├── wcsspn.c ├── wcsstarts.c ├── wcsstr.c ├── wcsstrcpy.c ├── wcsstrmove.c ├── wcsstrncpy.c ├── wcsstrnmove.c ├── wcstok.c ├── wcswcs.c ├── wmemcasecmp.c ├── wmemcasemem.c ├── wmemccpy.c ├── wmemchr.c ├── wmemcmove.c ├── wmemcmp.c ├── wmemcpy.c ├── wmemdup.c ├── wmemmem.c ├── wmemmove.c ├── wmempcpy.c ├── wmempmove.c ├── wmemrchr.c └── wmemset.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/.gitignore -------------------------------------------------------------------------------- /ACKNOWLEDGEMENT: -------------------------------------------------------------------------------- 1 | Thanks to Alexis Megas for his proofreading. 2 | 3 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/COPYING -------------------------------------------------------------------------------- /DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/DEPENDENCIES -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/TODO -------------------------------------------------------------------------------- /doc/info/appx/fdl.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/appx/fdl.texinfo -------------------------------------------------------------------------------- /doc/info/appx/free-software-needs-free-documentation.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/appx/free-software-needs-free-documentation.texinfo -------------------------------------------------------------------------------- /doc/info/appx/gpl.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/appx/gpl.texinfo -------------------------------------------------------------------------------- /doc/info/chap/error-reporting.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/chap/error-reporting.texinfo -------------------------------------------------------------------------------- /doc/info/chap/integer-types.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/chap/integer-types.texinfo -------------------------------------------------------------------------------- /doc/info/chap/introduction.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/chap/introduction.texinfo -------------------------------------------------------------------------------- /doc/info/chap/language-facilities.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/chap/language-facilities.texinfo -------------------------------------------------------------------------------- /doc/info/chap/memory-allocation.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/chap/memory-allocation.texinfo -------------------------------------------------------------------------------- /doc/info/content.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/content.texinfo -------------------------------------------------------------------------------- /doc/info/hardcopy-copying.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/hardcopy-copying.texinfo -------------------------------------------------------------------------------- /doc/info/reusable/macros.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/reusable/macros.texinfo -------------------------------------------------------------------------------- /doc/info/reusable/paper.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/reusable/paper.texinfo -------------------------------------------------------------------------------- /doc/info/reusable/titlepage.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/reusable/titlepage.texinfo -------------------------------------------------------------------------------- /doc/info/slibc.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/slibc.texinfo -------------------------------------------------------------------------------- /doc/info/titlepage-data.texinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/doc/info/titlepage-data.texinfo -------------------------------------------------------------------------------- /gen/bits/intconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/gen/bits/intconf.c -------------------------------------------------------------------------------- /gen/bits/intconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/gen/bits/intconf.h -------------------------------------------------------------------------------- /include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/alloca.h -------------------------------------------------------------------------------- /include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/arpa/inet.h -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/bits/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/bits/stdarg.h -------------------------------------------------------------------------------- /include/bits/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/bits/types.h -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/err.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/error.h -------------------------------------------------------------------------------- /include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/fcntl.h -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/iso646.h -------------------------------------------------------------------------------- /include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/libgen.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/memory.h -------------------------------------------------------------------------------- /include/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/obstack.h -------------------------------------------------------------------------------- /include/slibc-alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc-alloc.h -------------------------------------------------------------------------------- /include/slibc-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc-error.h -------------------------------------------------------------------------------- /include/slibc-human.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc-human.h -------------------------------------------------------------------------------- /include/slibc-print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc-print.h -------------------------------------------------------------------------------- /include/slibc/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc/attributes.h -------------------------------------------------------------------------------- /include/slibc/c-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc/c-version.h -------------------------------------------------------------------------------- /include/slibc/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc/features.h -------------------------------------------------------------------------------- /include/slibc/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc/internals.h -------------------------------------------------------------------------------- /include/slibc/portability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc/portability.h -------------------------------------------------------------------------------- /include/slibc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/slibc/version.h -------------------------------------------------------------------------------- /include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/stdalign.h -------------------------------------------------------------------------------- /include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/stdarg.h -------------------------------------------------------------------------------- /include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/stdbool.h -------------------------------------------------------------------------------- /include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/stddef.h -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/stdnoreturn.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/string.h -------------------------------------------------------------------------------- /include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/strings.h -------------------------------------------------------------------------------- /include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/errno.h -------------------------------------------------------------------------------- /include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/fcntl.h -------------------------------------------------------------------------------- /include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/poll.h -------------------------------------------------------------------------------- /include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/signal.h -------------------------------------------------------------------------------- /include/sys/soundcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/soundcard.h -------------------------------------------------------------------------------- /include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/stat.h -------------------------------------------------------------------------------- /include/sys/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/stropts.h -------------------------------------------------------------------------------- /include/sys/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/syslog.h -------------------------------------------------------------------------------- /include/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/termios.h -------------------------------------------------------------------------------- /include/sys/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/ucontext.h -------------------------------------------------------------------------------- /include/sys/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/sys/vt.h -------------------------------------------------------------------------------- /include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/unistd.h -------------------------------------------------------------------------------- /include/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/wait.h -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/include/wchar.h -------------------------------------------------------------------------------- /src/alloca/needstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/alloca/needstack.c -------------------------------------------------------------------------------- /src/arpa/inet/htonl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/arpa/inet/htonl.c -------------------------------------------------------------------------------- /src/arpa/inet/htonll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/arpa/inet/htonll.c -------------------------------------------------------------------------------- /src/arpa/inet/htons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/arpa/inet/htons.c -------------------------------------------------------------------------------- /src/arpa/inet/ntohl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/arpa/inet/ntohl.c -------------------------------------------------------------------------------- /src/arpa/inet/ntohll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/arpa/inet/ntohll.c -------------------------------------------------------------------------------- /src/arpa/inet/ntohs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/arpa/inet/ntohs.c -------------------------------------------------------------------------------- /src/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/assert.c -------------------------------------------------------------------------------- /src/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/ctype.c -------------------------------------------------------------------------------- /src/err/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/err/err.c -------------------------------------------------------------------------------- /src/err/errx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/err/errx.c -------------------------------------------------------------------------------- /src/err/verr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/err/verr.c -------------------------------------------------------------------------------- /src/err/verrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/err/verrx.c -------------------------------------------------------------------------------- /src/err/vwarn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/err/vwarn.c -------------------------------------------------------------------------------- /src/err/vwarnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/err/vwarnx.c -------------------------------------------------------------------------------- /src/err/warn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/err/warn.c -------------------------------------------------------------------------------- /src/err/warnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/err/warnx.c -------------------------------------------------------------------------------- /src/errno/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/errno/variables.c -------------------------------------------------------------------------------- /src/error/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/error/error.c -------------------------------------------------------------------------------- /src/error/error_at_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/error/error_at_line.c -------------------------------------------------------------------------------- /src/error/variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/error/variables.c -------------------------------------------------------------------------------- /src/error/verror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/error/verror.c -------------------------------------------------------------------------------- /src/error/verror_at_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/error/verror_at_line.c -------------------------------------------------------------------------------- /src/fcntl/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/fcntl/creat.c -------------------------------------------------------------------------------- /src/fcntl/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/fcntl/reopen.c -------------------------------------------------------------------------------- /src/inttypes/imaxabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/inttypes/imaxabs.c -------------------------------------------------------------------------------- /src/inttypes/imaxdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/inttypes/imaxdiv.c -------------------------------------------------------------------------------- /src/libgen/basename_xpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/libgen/basename_xpg.c -------------------------------------------------------------------------------- /src/libgen/cleanname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/libgen/cleanname.c -------------------------------------------------------------------------------- /src/libgen/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/libgen/dirname.c -------------------------------------------------------------------------------- /src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/malloc.c -------------------------------------------------------------------------------- /src/malloc/aligned_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/malloc/aligned_alloc.c -------------------------------------------------------------------------------- /src/malloc/cfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/malloc/cfree.c -------------------------------------------------------------------------------- /src/malloc/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/malloc/free.c -------------------------------------------------------------------------------- /src/malloc/malloc_usable_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/malloc/malloc_usable_size.c -------------------------------------------------------------------------------- /src/malloc/posix_memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/malloc/posix_memalign.c -------------------------------------------------------------------------------- /src/malloc/realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/malloc/realloc.c -------------------------------------------------------------------------------- /src/slibc-alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-alloc.c -------------------------------------------------------------------------------- /src/slibc-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-error.c -------------------------------------------------------------------------------- /src/slibc-human/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-human/escape.c -------------------------------------------------------------------------------- /src/slibc-human/escapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-human/escapes.h -------------------------------------------------------------------------------- /src/slibc-human/humanmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-human/humanmode.c -------------------------------------------------------------------------------- /src/slibc-human/humansize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-human/humansize.c -------------------------------------------------------------------------------- /src/slibc-human/machinemode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-human/machinemode.c -------------------------------------------------------------------------------- /src/slibc-human/machinesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-human/machinesize.c -------------------------------------------------------------------------------- /src/slibc-human/unescape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-human/unescape.c -------------------------------------------------------------------------------- /src/slibc-print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/slibc-print.c -------------------------------------------------------------------------------- /src/stdio/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdio/printf.c -------------------------------------------------------------------------------- /src/stdio/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdio/scanf.c -------------------------------------------------------------------------------- /src/stdlib/abs/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/abs/abs.c -------------------------------------------------------------------------------- /src/stdlib/abs/labs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/abs/labs.c -------------------------------------------------------------------------------- /src/stdlib/abs/llabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/abs/llabs.c -------------------------------------------------------------------------------- /src/stdlib/abspath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/abspath.c -------------------------------------------------------------------------------- /src/stdlib/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/atof.c -------------------------------------------------------------------------------- /src/stdlib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/atoi.c -------------------------------------------------------------------------------- /src/stdlib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/atol.c -------------------------------------------------------------------------------- /src/stdlib/atoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/atoll.c -------------------------------------------------------------------------------- /src/stdlib/atoq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/atoq.c -------------------------------------------------------------------------------- /src/stdlib/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/bsearch.c -------------------------------------------------------------------------------- /src/stdlib/clearenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/clearenv.c -------------------------------------------------------------------------------- /src/stdlib/div/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/div/div.c -------------------------------------------------------------------------------- /src/stdlib/div/ldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/div/ldiv.c -------------------------------------------------------------------------------- /src/stdlib/div/lldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/div/lldiv.c -------------------------------------------------------------------------------- /src/stdlib/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/getenv.c -------------------------------------------------------------------------------- /src/stdlib/relpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/stdlib/relpath.c -------------------------------------------------------------------------------- /src/string/basename_gnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/basename_gnu.c -------------------------------------------------------------------------------- /src/string/mem/memcasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memcasecmp.c -------------------------------------------------------------------------------- /src/string/mem/memcasemem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memcasemem.c -------------------------------------------------------------------------------- /src/string/mem/memccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memccpy.c -------------------------------------------------------------------------------- /src/string/mem/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memchr.c -------------------------------------------------------------------------------- /src/string/mem/memcmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memcmove.c -------------------------------------------------------------------------------- /src/string/mem/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memcmp.c -------------------------------------------------------------------------------- /src/string/mem/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memcpy.c -------------------------------------------------------------------------------- /src/string/mem/memdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memdup.c -------------------------------------------------------------------------------- /src/string/mem/memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memmem.c -------------------------------------------------------------------------------- /src/string/mem/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memmove.c -------------------------------------------------------------------------------- /src/string/mem/mempcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/mempcpy.c -------------------------------------------------------------------------------- /src/string/mem/mempmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/mempmove.c -------------------------------------------------------------------------------- /src/string/mem/memrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memrchr.c -------------------------------------------------------------------------------- /src/string/mem/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/memset.c -------------------------------------------------------------------------------- /src/string/mem/rawmemchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/rawmemchr.c -------------------------------------------------------------------------------- /src/string/mem/substring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/mem/substring.h -------------------------------------------------------------------------------- /src/string/memfrob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/memfrob.c -------------------------------------------------------------------------------- /src/string/new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/new.c -------------------------------------------------------------------------------- /src/string/str/rawstrcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/rawstrcasestr.c -------------------------------------------------------------------------------- /src/string/str/rawstrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/rawstrstr.c -------------------------------------------------------------------------------- /src/string/str/stpcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/stpcpy.c -------------------------------------------------------------------------------- /src/string/str/stpmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/stpmove.c -------------------------------------------------------------------------------- /src/string/str/strcasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strcasecmp.c -------------------------------------------------------------------------------- /src/string/str/strcaseends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strcaseends.c -------------------------------------------------------------------------------- /src/string/str/strcasestarts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strcasestarts.c -------------------------------------------------------------------------------- /src/string/str/strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strcasestr.c -------------------------------------------------------------------------------- /src/string/str/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strcat.c -------------------------------------------------------------------------------- /src/string/str/strccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strccpy.c -------------------------------------------------------------------------------- /src/string/str/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strchr.c -------------------------------------------------------------------------------- /src/string/str/strchrnul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strchrnul.c -------------------------------------------------------------------------------- /src/string/str/strcmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strcmove.c -------------------------------------------------------------------------------- /src/string/str/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strcmp.c -------------------------------------------------------------------------------- /src/string/str/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strcpy.c -------------------------------------------------------------------------------- /src/string/str/strcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strcspn.c -------------------------------------------------------------------------------- /src/string/str/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strdup.c -------------------------------------------------------------------------------- /src/string/str/strends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strends.c -------------------------------------------------------------------------------- /src/string/str/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strlen.c -------------------------------------------------------------------------------- /src/string/str/strmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strmove.c -------------------------------------------------------------------------------- /src/string/str/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strpbrk.c -------------------------------------------------------------------------------- /src/string/str/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strrchr.c -------------------------------------------------------------------------------- /src/string/str/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strsep.c -------------------------------------------------------------------------------- /src/string/str/strset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strset.c -------------------------------------------------------------------------------- /src/string/str/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strspn.c -------------------------------------------------------------------------------- /src/string/str/strstarts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strstarts.c -------------------------------------------------------------------------------- /src/string/str/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strstr.c -------------------------------------------------------------------------------- /src/string/str/strstrcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strstrcpy.c -------------------------------------------------------------------------------- /src/string/str/strstrmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strstrmove.c -------------------------------------------------------------------------------- /src/string/str/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strtok.c -------------------------------------------------------------------------------- /src/string/str/strtok_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/str/strtok_r.c -------------------------------------------------------------------------------- /src/string/strerror/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strerror/strerror.c -------------------------------------------------------------------------------- /src/string/strerror/strerror_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strerror/strerror_l.c -------------------------------------------------------------------------------- /src/string/strerror/strerror_r_gnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strerror/strerror_r_gnu.c -------------------------------------------------------------------------------- /src/string/strerror/strerror_r_xsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strerror/strerror_r_xsi.c -------------------------------------------------------------------------------- /src/string/strfry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strfry.c -------------------------------------------------------------------------------- /src/string/strn/stpncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/stpncpy.c -------------------------------------------------------------------------------- /src/string/strn/stpnmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/stpnmove.c -------------------------------------------------------------------------------- /src/string/strn/strcncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strcncpy.c -------------------------------------------------------------------------------- /src/string/strn/strcnmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strcnmove.c -------------------------------------------------------------------------------- /src/string/strn/strncasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strncasecmp.c -------------------------------------------------------------------------------- /src/string/strn/strncasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strncasestr.c -------------------------------------------------------------------------------- /src/string/strn/strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strncat.c -------------------------------------------------------------------------------- /src/string/strn/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strncmp.c -------------------------------------------------------------------------------- /src/string/strn/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strncpy.c -------------------------------------------------------------------------------- /src/string/strn/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strndup.c -------------------------------------------------------------------------------- /src/string/strn/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strnlen.c -------------------------------------------------------------------------------- /src/string/strn/strnmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strnmove.c -------------------------------------------------------------------------------- /src/string/strn/strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strnstr.c -------------------------------------------------------------------------------- /src/string/strn/strstrncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strstrncpy.c -------------------------------------------------------------------------------- /src/string/strn/strstrnmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/string/strn/strstrnmove.c -------------------------------------------------------------------------------- /src/strings/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/README -------------------------------------------------------------------------------- /src/strings/bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/bcmp.c -------------------------------------------------------------------------------- /src/strings/bcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/bcopy.c -------------------------------------------------------------------------------- /src/strings/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/bzero.c -------------------------------------------------------------------------------- /src/strings/explicit_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/explicit_bzero.c -------------------------------------------------------------------------------- /src/strings/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/ffs.c -------------------------------------------------------------------------------- /src/strings/ffsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/ffsl.c -------------------------------------------------------------------------------- /src/strings/ffsll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/ffsll.c -------------------------------------------------------------------------------- /src/strings/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/index.c -------------------------------------------------------------------------------- /src/strings/rindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/strings/rindex.c -------------------------------------------------------------------------------- /src/unistd/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/daemon.c -------------------------------------------------------------------------------- /src/unistd/daemonise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/daemonise.c -------------------------------------------------------------------------------- /src/unistd/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/exec.c -------------------------------------------------------------------------------- /src/unistd/execat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/execat.c -------------------------------------------------------------------------------- /src/unistd/fexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/fexec.c -------------------------------------------------------------------------------- /src/unistd/getpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/getpass.c -------------------------------------------------------------------------------- /src/unistd/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/halt.c -------------------------------------------------------------------------------- /src/unistd/hcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/hcf.c -------------------------------------------------------------------------------- /src/unistd/preadn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/preadn.c -------------------------------------------------------------------------------- /src/unistd/pwriten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/pwriten.c -------------------------------------------------------------------------------- /src/unistd/readn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/readn.c -------------------------------------------------------------------------------- /src/unistd/searchpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/searchpath.c -------------------------------------------------------------------------------- /src/unistd/searchpath2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/searchpath2.c -------------------------------------------------------------------------------- /src/unistd/searchpath3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/searchpath3.c -------------------------------------------------------------------------------- /src/unistd/writen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/unistd/writen.c -------------------------------------------------------------------------------- /src/wchar/new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/new.c -------------------------------------------------------------------------------- /src/wchar/rawwcscasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/rawwcscasestr.c -------------------------------------------------------------------------------- /src/wchar/rawwcsstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/rawwcsstr.c -------------------------------------------------------------------------------- /src/wchar/rawwmemchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/rawwmemchr.c -------------------------------------------------------------------------------- /src/wchar/wcpcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcpcpy.c -------------------------------------------------------------------------------- /src/wchar/wcpmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcpmove.c -------------------------------------------------------------------------------- /src/wchar/wcpncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcpncpy.c -------------------------------------------------------------------------------- /src/wchar/wcpnmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcpnmove.c -------------------------------------------------------------------------------- /src/wchar/wcscasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscasecmp.c -------------------------------------------------------------------------------- /src/wchar/wcscaseends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscaseends.c -------------------------------------------------------------------------------- /src/wchar/wcscasestarts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscasestarts.c -------------------------------------------------------------------------------- /src/wchar/wcscasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscasestr.c -------------------------------------------------------------------------------- /src/wchar/wcscat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscat.c -------------------------------------------------------------------------------- /src/wchar/wcsccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsccpy.c -------------------------------------------------------------------------------- /src/wchar/wcschr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcschr.c -------------------------------------------------------------------------------- /src/wchar/wcschrnul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcschrnul.c -------------------------------------------------------------------------------- /src/wchar/wcscmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscmove.c -------------------------------------------------------------------------------- /src/wchar/wcscmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscmp.c -------------------------------------------------------------------------------- /src/wchar/wcscncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscncpy.c -------------------------------------------------------------------------------- /src/wchar/wcscnmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscnmove.c -------------------------------------------------------------------------------- /src/wchar/wcscpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscpy.c -------------------------------------------------------------------------------- /src/wchar/wcscspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcscspn.c -------------------------------------------------------------------------------- /src/wchar/wcsdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsdup.c -------------------------------------------------------------------------------- /src/wchar/wcsends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsends.c -------------------------------------------------------------------------------- /src/wchar/wcslen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcslen.c -------------------------------------------------------------------------------- /src/wchar/wcsmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsmove.c -------------------------------------------------------------------------------- /src/wchar/wcsncasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsncasecmp.c -------------------------------------------------------------------------------- /src/wchar/wcsncasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsncasestr.c -------------------------------------------------------------------------------- /src/wchar/wcsncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsncat.c -------------------------------------------------------------------------------- /src/wchar/wcsncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsncmp.c -------------------------------------------------------------------------------- /src/wchar/wcsncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsncpy.c -------------------------------------------------------------------------------- /src/wchar/wcsndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsndup.c -------------------------------------------------------------------------------- /src/wchar/wcsnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsnlen.c -------------------------------------------------------------------------------- /src/wchar/wcsnmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsnmove.c -------------------------------------------------------------------------------- /src/wchar/wcsnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsnstr.c -------------------------------------------------------------------------------- /src/wchar/wcspbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcspbrk.c -------------------------------------------------------------------------------- /src/wchar/wcsrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsrchr.c -------------------------------------------------------------------------------- /src/wchar/wcssep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcssep.c -------------------------------------------------------------------------------- /src/wchar/wcsset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsset.c -------------------------------------------------------------------------------- /src/wchar/wcsspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsspn.c -------------------------------------------------------------------------------- /src/wchar/wcsstarts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsstarts.c -------------------------------------------------------------------------------- /src/wchar/wcsstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsstr.c -------------------------------------------------------------------------------- /src/wchar/wcsstrcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsstrcpy.c -------------------------------------------------------------------------------- /src/wchar/wcsstrmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsstrmove.c -------------------------------------------------------------------------------- /src/wchar/wcsstrncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsstrncpy.c -------------------------------------------------------------------------------- /src/wchar/wcsstrnmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcsstrnmove.c -------------------------------------------------------------------------------- /src/wchar/wcstok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcstok.c -------------------------------------------------------------------------------- /src/wchar/wcswcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wcswcs.c -------------------------------------------------------------------------------- /src/wchar/wmemcasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemcasecmp.c -------------------------------------------------------------------------------- /src/wchar/wmemcasemem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemcasemem.c -------------------------------------------------------------------------------- /src/wchar/wmemccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemccpy.c -------------------------------------------------------------------------------- /src/wchar/wmemchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemchr.c -------------------------------------------------------------------------------- /src/wchar/wmemcmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemcmove.c -------------------------------------------------------------------------------- /src/wchar/wmemcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemcmp.c -------------------------------------------------------------------------------- /src/wchar/wmemcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemcpy.c -------------------------------------------------------------------------------- /src/wchar/wmemdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemdup.c -------------------------------------------------------------------------------- /src/wchar/wmemmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemmem.c -------------------------------------------------------------------------------- /src/wchar/wmemmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemmove.c -------------------------------------------------------------------------------- /src/wchar/wmempcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmempcpy.c -------------------------------------------------------------------------------- /src/wchar/wmempmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmempmove.c -------------------------------------------------------------------------------- /src/wchar/wmemrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemrchr.c -------------------------------------------------------------------------------- /src/wchar/wmemset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maandree/slibc/HEAD/src/wchar/wmemset.c --------------------------------------------------------------------------------