- Timestamp:
- 07/15/2017 11:15:58 AM (8 years ago)
- Branches:
- master
- Children:
- c80943f
- Parents:
- 09d1345
- Location:
- libsm
- Files:
- 
      - 4 edited
 
 
Legend:
- Unmodified
- Added
- Removed
- 
      libsm/memset.cr09d1345 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.xr09d1345 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.cr09d1345 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.xr09d1345 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.
  ![(please configure the [header_logo] section in trac.ini)](http://bob.lopatic.de/chrome/site/logo.png)
