diff options
author | Andi Gutmans <andi@php.net> | 2000-09-06 20:27:12 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-09-06 20:27:12 +0000 |
commit | b8a95da22ab157b85fb1cf6c55c1ce71da420248 (patch) | |
tree | 67dfcb88a43d1a16bb1c613711feb32ccd8438a2 /TSRM/tsrm_strtok_r.c | |
parent | 180c337885981c4cf1e6f6facf64d549fe6a932d (diff) | |
download | php-git-b8a95da22ab157b85fb1cf6c55c1ce71da420248.tar.gz |
- Centralize some configuration stuff
- Use inline in my strtok_r implementation
Diffstat (limited to 'TSRM/tsrm_strtok_r.c')
-rw-r--r-- | TSRM/tsrm_strtok_r.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/TSRM/tsrm_strtok_r.c b/TSRM/tsrm_strtok_r.c index b631825140..e9ad26a7ac 100644 --- a/TSRM/tsrm_strtok_r.c +++ b/TSRM/tsrm_strtok_r.c @@ -1,8 +1,9 @@ -#include "tsrm_strtok_r.h" - #include <stdio.h> -static int in_character_class(char ch, const char *delim) +#include "tsrm_config_common.h" +#include "tsrm_strtok_r.h" + +static inline int in_character_class(char ch, const char *delim) { while (*delim) { if (*delim == ch) { |