Changeset 7d0d347 in buchla-68k
- Timestamp:
- 07/15/2017 12:09:31 PM (7 years ago)
- Branches:
- master
- Children:
- 8973acd
- Parents:
- d18a473
- Location:
- libsm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libsm/strfill.c
rd18a473 r7d0d347 15 15 #include "ram.h" 16 16 17 int8_t *strfill(int8_t *s, int8_t c, uint16_t n)17 int8_t *strfill(int8_t *s, int8_t c, int16_t n) 18 18 { 19 register uint16_t i;19 register int16_t i; 20 20 int8_t *p; 21 21 -
libsm/strfill.x
rd18a473 r7d0d347 15 15 */ 16 16 17 extern int8_t *strfill(int8_t *s, int8_t c, uint16_t n);17 extern int8_t *strfill(int8_t *s, int8_t c, int16_t n);
Note:
See TracChangeset
for help on using the changeset viewer.