- Timestamp:
- 07/10/2017 02:17:49 PM (7 years ago)
- Branches:
- master
- Children:
- 06f6615
- Parents:
- 39a696b
- Location:
- libsm
- Files:
-
- 33 edited
Legend:
- Unmodified
- Added
- Removed
-
libsm/index.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include " all.h"8 #include "ram.h" 9 9 10 10 int8_t *index(int8_t *str, int8_t c) -
libsm/memccpy.c
r39a696b rb28a12e 11 11 */ 12 12 13 #include " all.h"13 #include "ram.h" 14 14 15 15 void *memccpy(void *vp1, void *vp2, int8_t c, int16_t n) -
libsm/memchr.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 void *memchr(void *vp, int8_t c, int16_t n) -
libsm/memcmp.c
r39a696b rb28a12e 8 8 */ 9 9 10 #include " all.h"10 #include "ram.h" 11 11 12 12 int16_t memcmp(void *vp1, void *vp2, int16_t n) -
libsm/memcmpu.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include " all.h"8 #include "ram.h" 9 9 10 10 int16_t memcmpu(void *vp1, void *vp2, int16_t n) -
libsm/memcpy.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 void *memcpy(void *vp1, void *vp2, int16_t n) -
libsm/memcpyw.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 void *memcpyw(void *vp1, void *vp2, int16_t n) -
libsm/memset.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 void *memset(void *vp, int8_t c, int16_t n) -
libsm/memsetw.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 void *memsetw(void *vp, int16_t s, int16_t n) -
libsm/rindex.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include " all.h"8 #include "ram.h" 9 9 10 10 int8_t *rindex(int8_t *str, int8_t c) -
libsm/str2lc.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include " all.h"8 #include "ram.h" 9 9 10 10 int8_t *str2lc(int8_t *s) -
libsm/str2uc.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include " all.h"8 #include "ram.h" 9 9 10 10 int8_t *str2uc(int8_t *s) -
libsm/strcat.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 int8_t *strcat(int8_t *s1, int8_t *s2) -
libsm/strccpy.c
r39a696b rb28a12e 16 16 */ 17 17 18 #include " all.h"18 #include "ram.h" 19 19 20 20 int8_t *strccpy(int8_t *s1, int8_t *s2, int8_t c) -
libsm/strchr.c
r39a696b rb28a12e 8 8 */ 9 9 10 #include " all.h"10 #include "ram.h" 11 11 12 12 int8_t *strchr(int8_t *sp, int8_t c) -
libsm/strcmp.c
r39a696b rb28a12e 8 8 */ 9 9 10 #include " all.h"10 #include "ram.h" 11 11 12 12 int16_t strcmp(int8_t *s1, int8_t *s2) -
libsm/strcpy.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 int8_t *strcpy(int8_t *s1, int8_t *s2) -
libsm/strcspn.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 int16_t strcspn(int8_t *string, int8_t *charset) -
libsm/strfill.c
r39a696b rb28a12e 13 13 */ 14 14 15 #include " all.h"15 #include "ram.h" 16 16 17 17 int8_t *strfill(int8_t *s, int8_t c, uint16_t n) -
libsm/strlcmp.c
r39a696b rb28a12e 15 15 */ 16 16 17 #include " all.h"17 #include "ram.h" 18 18 19 19 int16_t strlcmp(int8_t *s, int8_t *l[]) -
libsm/strlen.c
r39a696b rb28a12e 8 8 */ 9 9 10 #include " all.h"10 #include "ram.h" 11 11 12 12 int16_t strlen(int8_t *s) -
libsm/strltrm.c
r39a696b rb28a12e 8 8 */ 9 9 10 #include " all.h"10 #include "ram.h" 11 11 12 12 int8_t *strltrm(int8_t *s) -
libsm/strncat.c
r39a696b rb28a12e 10 10 */ 11 11 12 #include " all.h"12 #include "ram.h" 13 13 14 14 int8_t *strncat(int8_t *s1, int8_t *s2, int16_t n) -
libsm/strncmp.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 int16_t strncmp(int8_t *s1, int8_t *s2, int16_t n) -
libsm/strncpy.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 int8_t *strncpy(int8_t *s1, int8_t *s2, int16_t n) -
libsm/strpbrk.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 int8_t *strpbrk(int8_t *string, int8_t *brkset) -
libsm/strrchr.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 int8_t *strrchr(int8_t *sp, int8_t c) -
libsm/strrev.c
r39a696b rb28a12e 14 14 */ 15 15 16 #include " all.h"16 #include "ram.h" 17 17 18 18 int8_t *strrev(int8_t *s1, int8_t *s2) -
libsm/strrevi.c
r39a696b rb28a12e 12 12 */ 13 13 14 #include " all.h"14 #include "ram.h" 15 15 16 16 int8_t *strrevi(int8_t *s) -
libsm/strrtrm.c
r39a696b rb28a12e 8 8 */ 9 9 10 #include " all.h"10 #include "ram.h" 11 11 12 12 int8_t *strrtrm(int8_t *s) -
libsm/strspn.c
r39a696b rb28a12e 9 9 */ 10 10 11 #include " all.h"11 #include "ram.h" 12 12 13 13 int16_t strspn(int8_t *string, int8_t *charset) -
libsm/strtok.c
r39a696b rb28a12e 11 11 */ 12 12 13 #include " all.h"13 #include "ram.h" 14 14 15 15 int8_t *strtok(int8_t *string, int8_t *sepset) -
libsm/strtol.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include " all.h"8 #include "ram.h" 9 9 10 10 #define DIGIT(x) (isdigit(x) ? (x)-'0' : islower(x) ? (x)+10-'a' : (x)+10-'A')
Note:
See TracChangeset
for help on using the changeset viewer.