Add assembly language versions of string and memory functions.
authorJ.T. Conklin <jtc@FreeBSD.org>
Mon, 16 Aug 1993 18:40:50 +0000 (18:40 +0000)
committerJ.T. Conklin <jtc@FreeBSD.org>
Mon, 16 Aug 1993 18:40:50 +0000 (18:40 +0000)
commit4649a47038ea04188e6fbbda56d099b3b46aab8e
treef37f3488543b2b61684a84dc82c074958fd8167f
parent10f4b4f27c4979598c715206fa5c3e1caed0eea9
Add assembly language versions of string and memory functions.
18 files changed:
lib/libc/i386/string/bcmp.s [new file with mode: 0644]
lib/libc/i386/string/bcopy.s
lib/libc/i386/string/bzero.s
lib/libc/i386/string/ffs.s [new file with mode: 0644]
lib/libc/i386/string/index.s [new file with mode: 0644]
lib/libc/i386/string/memchr.s [new file with mode: 0644]
lib/libc/i386/string/memcmp.s [new file with mode: 0644]
lib/libc/i386/string/memcpy.s [new file with mode: 0644]
lib/libc/i386/string/memmove.s [new file with mode: 0644]
lib/libc/i386/string/memset.s [new file with mode: 0644]
lib/libc/i386/string/rindex.s [new file with mode: 0644]
lib/libc/i386/string/strcat.s [new file with mode: 0644]
lib/libc/i386/string/strchr.s [new file with mode: 0644]
lib/libc/i386/string/strcmp.s [new file with mode: 0644]
lib/libc/i386/string/strcpy.s [new file with mode: 0644]
lib/libc/i386/string/strlen.s [new file with mode: 0644]
lib/libc/i386/string/strncmp.s [new file with mode: 0644]
lib/libc/i386/string/strrchr.s [new file with mode: 0644]