summaryrefslogtreecommitdiff
path: root/src/runtime/c/gu/string.h
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2012-03-07 16:39:29 +0000
committerkr.angelov <kr.angelov@gmail.com>2012-03-07 16:39:29 +0000
commited5de8335bb1d984918702abff70aadc4d554539 (patch)
tree7e61957d0b103da4409bf39ba55bbe42efc772d2 /src/runtime/c/gu/string.h
parent96493c274ba1a02d52f4739f4c222f2b2cbdee54 (diff)
libpgf: implementation for built in literal categories
Diffstat (limited to 'src/runtime/c/gu/string.h')
-rw-r--r--src/runtime/c/gu/string.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runtime/c/gu/string.h b/src/runtime/c/gu/string.h
index d6bb11b58..b041518b3 100644
--- a/src/runtime/c/gu/string.h
+++ b/src/runtime/c/gu/string.h
@@ -63,6 +63,12 @@ gu_format_string(GuPool* pool, const char* fmt, ...);
GuString
gu_str_string(const char* str, GuPool* pool);
+bool
+gu_string_to_int(GuString s, int *res);
+
+bool
+gu_string_to_double(GuString s, double *res);
+
#endif // GU_STRING_H_
#if defined(GU_HASH_H_) && !defined(GU_STRING_H_HASH_)