Changeset 785
- Timestamp:
- Feb 8, 2016, 3:57:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/string.c
r781 r785 11 11 if (!destination || !source) return destination; 12 12 13 char* src = source;14 13 char* dst = destination; 15 14 do 16 15 { 17 *dst = *s rc;16 *dst = *source; 18 17 dst++; 19 s rc++;20 } while (*s rc);18 source++; 19 } while (*source); 21 20 22 21 *dst = 0;
Note: See TracChangeset
for help on using the changeset viewer.