This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-cores
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Merge pull request
#73
from FrankBoesing/patch-2
strlen is already in string.h
main
Paul Stoffregen
9 years ago
parent
91ac7e4aab
7d3da62a48
commit
77058b2f72
1 changed files
with
0 additions
and
8 deletions
Split View
Show Diff Stats
+0
-8
teensy3/nonstd.c
+ 0
- 8
teensy3/nonstd.c
View File
@@ -32,14 +32,6 @@
#include <string.h>
#include <stdlib.h>
size_t strlen(const char *s)
{
size_t n=0;
while (*s++) n++;
return n;
}
char * ultoa(unsigned long val, char *buf, int radix)
{
Write
Preview
Loading…
Cancel
Save