diff options
| author | Miguel <m.i@gmx.at> | 2018-09-13 14:40:09 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-13 14:40:09 +0200 |
| commit | 3bba2df34be1680777ff85ad4fbc43717609ec75 (patch) | |
| tree | 983e3c2b5667e3aa150502f59453ecebeeeba63a /lib | |
| parent | f844fafd324fbf4c7a986df2f0814f2e2d93bcd8 (diff) | |
thinking about syscalls and newlib ...
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/string/string.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/string/string.c b/lib/string/string.c index 2405483..08348d3 100644 --- a/lib/string/string.c +++ b/lib/string/string.c @@ -10,9 +10,8 @@ void* memcpy(void* restrict dstptr, const void* restrict srcptr, int size) return dstptr; } - // extra function for non-null terminated -//length 0 for null terminated strings; +// length 0 for null terminated strings; int strcmp_l(char *str1, char *str2, int length) { int i=0; |
