diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2011-05-03 10:10:59 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2011-05-03 10:10:59 -0400 |
commit | ff108a1414736fe057b4eada10f4a8c3dc32ac39 (patch) | |
tree | 942d28cad437dd20bf29cb60ad58ad4949b87c96 /include/compat/strchrnul.h | |
parent | 91af8f14863a516ff9aa80b703d8a34583e6e107 (diff) | |
parent | 4957bf13b26a403271c9838a9b74b9f61682fa8e (diff) | |
download | duser-ff108a1414736fe057b4eada10f4a8c3dc32ac39.tar.gz |
Merge pull request #5 from extrarius/master.
Various code clean ups to solve potential problems
Diffstat (limited to 'include/compat/strchrnul.h')
-rw-r--r-- | include/compat/strchrnul.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/compat/strchrnul.h b/include/compat/strchrnul.h new file mode 100644 index 0000000..ca12806 --- /dev/null +++ b/include/compat/strchrnul.h @@ -0,0 +1,4 @@ +#ifndef STRCHRNUL_H +#define STRCHRNUL_H +char *strchrnul(const char* s, int c); +#endif |