Merge pull request #168 from dhylands/add-strstr

Added public domain implementations of strchr and strstr.
This commit is contained in:
Damien George
2014-01-13 11:43:57 -08:00
3 changed files with 31 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
#include <stdarg.h>
#include <string.h>
#include <assert.h>
#include <sys/types.h>
#include "nlr.h"
#include "misc.h"