- Timestamp:
- 07/15/2017 11:15:58 AM (7 years ago)
- Branches:
- master
- Children:
- c80943f
- Parents:
- 09d1345
- Location:
- libsm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libsm/memset.c
r09d1345 rbf89cfb 11 11 #include "ram.h" 12 12 13 void *memset(void *vp, int8_t c, int16_t n)13 void *memset(void *vp, uint8_t c, int16_t n) 14 14 { 15 int8_t *cp = vp;15 uint8_t *cp = vp; 16 16 17 17 while (--n >= 0) -
libsm/memset.x
r09d1345 rbf89cfb 15 15 */ 16 16 17 extern void *memset(void *vp, int8_t c, int16_t n);17 extern void *memset(void *vp, uint8_t c, int16_t n); -
libsm/memsetw.c
r09d1345 rbf89cfb 11 11 #include "ram.h" 12 12 13 void *memsetw(void *vp, int16_t s, int16_t n)13 void *memsetw(void *vp, uint16_t s, int16_t n) 14 14 { 15 int16_t *sp = vp;15 uint16_t *sp = vp; 16 16 17 17 while (--n >= 0) -
libsm/memsetw.x
r09d1345 rbf89cfb 15 15 */ 16 16 17 extern void *memsetw(void *vp, int16_t s, int16_t n);17 extern void *memsetw(void *vp, uint16_t s, int16_t n);
Note:
See TracChangeset
for help on using the changeset viewer.