diff options
author | jcid <devnull@localhost> | 2008-04-06 18:58:30 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-04-06 18:58:30 +0200 |
commit | 40334a7897e3b6f81ae957ae518e3e7afade32fe (patch) | |
tree | db514b3dc7ba42eaa5fb65f00d3060fb6422118f /dlib/dlib.h | |
parent | 7650ae10e77d0058fe617ef670bad60349b45fed (diff) |
- Added dStr_memmem() to dlib.
Diffstat (limited to 'dlib/dlib.h')
-rw-r--r-- | dlib/dlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dlib/dlib.h b/dlib/dlib.h index d86adc96..7bcac739 100644 --- a/dlib/dlib.h +++ b/dlib/dlib.h @@ -107,6 +107,7 @@ void dStr_vsprintf (Dstr *ds, const char *format, va_list argp); void dStr_sprintf (Dstr *ds, const char *format, ...); void dStr_sprintfa (Dstr *ds, const char *format, ...); int dStr_cmp(Dstr *ds1, Dstr *ds2); +char *dStr_memmem(Dstr *haystack, Dstr *needle); /* *-- dList -------------------------------------------------------------------- |