diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-13 11:43:57 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-13 11:43:57 -0800 |
commit | f88a72a88e78ce1cfbd25f0cbf1fbff5e6fd43cb (patch) | |
tree | 819b59b7c3dc69052bfbb8528fccda4bbe1c006c /stm/std.h | |
parent | 2300537c79dd642a7187018334a1a697a415f589 (diff) | |
parent | c8effff937442be01d36d56c77054bbdee3f3aff (diff) | |
download | micropython-f88a72a88e78ce1cfbd25f0cbf1fbff5e6fd43cb.tar.gz micropython-f88a72a88e78ce1cfbd25f0cbf1fbff5e6fd43cb.zip |
Merge pull request #168 from dhylands/add-strstr
Added public domain implementations of strchr and strstr.
Diffstat (limited to 'stm/std.h')
-rw-r--r-- | stm/std.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -17,6 +17,8 @@ int strncmp(const char *s1, const char *s2, size_t n); char *strndup(const char *s, size_t n); char *strcpy(char *dest, const char *src); char *strcat(char *dest, const char *src); +char *strchr(const char *s, int c); +char *strstr(const char *haystack, const char *needle); int printf(const char *fmt, ...); int snprintf(char *str, size_t size, const char *fmt, ...); |