diff options
| author | kr.angelov <kr.angelov@gmail.com> | 2013-09-18 08:03:37 +0000 |
|---|---|---|
| committer | kr.angelov <kr.angelov@gmail.com> | 2013-09-18 08:03:37 +0000 |
| commit | a42cbb84ff2492f85e02cf20228faf3247a1b76f (patch) | |
| tree | aeb41d91332c976e9bcd9101598d6f942b47ebdf | |
| parent | 99985843d1bacb32fceff7a988b6648eef3c3922 (diff) | |
add type signature for gu_string_length in the headers of libgu
| -rw-r--r-- | src/runtime/c/gu/string.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/c/gu/string.h b/src/runtime/c/gu/string.h index ea4792b11..8f6f035a1 100644 --- a/src/runtime/c/gu/string.h +++ b/src/runtime/c/gu/string.h @@ -79,6 +79,9 @@ gu_string_to_double(GuString s, double *res); bool gu_string_is_prefix(GuString s1, GuString s2); +size_t +gu_string_length(GuString s); + #endif // GU_STRING_H_ #if defined(GU_FUN_H_) && !defined(GU_STRING_H_FUN_) |
