From 9f0f30f7dea1b8fd888d774175ed96d802118b11 Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Thu, 31 Jul 2014 22:09:52 -0400 Subject: util: Const version of strtok_len Because of limitations in the C type system, we can't a strtok_len that can work on both const string and non-const strings. The C library solves this by taking a const char* and returning a char* in functions like this (e.g., strchr), but that's not const-safe. Solve it by introducing strtok_len_c, a version of strtok_len for const strings. --- util/string-util.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'util/string-util.c') diff --git a/util/string-util.c b/util/string-util.c index 3e7066cd..a90501ee 100644 --- a/util/string-util.c +++ b/util/string-util.c @@ -37,6 +37,14 @@ strtok_len (char *s, const char *delim, size_t *len) return *len ? s : NULL; } +const char * +strtok_len_c (const char *s, const char *delim, size_t *len) +{ + /* strtok_len is already const-safe, but we can't express both + * versions in the C type system. */ + return strtok_len ((char*)s, delim, len); +} + char * sanitize_string (const void *ctx, const char *str) { -- cgit v1.2.3