aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-08-08 15:06:46 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-08-08 15:06:46 -0700
commit8e07e55c1f928ed8a0da6360e00b2b8139594a63 (patch)
tree2d1496cd9a416bf8e5a29d8b85c092109d651421 /common.h
parent6a6593335d2311432ca5d05d2081cb30c4fec34f (diff)
More work on new parser
Diffstat (limited to 'common.h')
-rw-r--r--common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.h b/common.h
index 57fe7fa1..abbf12f3 100644
--- a/common.h
+++ b/common.h
@@ -608,10 +608,10 @@ const wchar_t *wcsfuncname(const wchar_t *str);
/**
Test if the given string is valid in a variable name
- \return 1 if this is a valid name, 0 otherwise
+ \return true if this is a valid name, false otherwise
*/
-int wcsvarchr(wchar_t chr);
+bool wcsvarchr(wchar_t chr);
/**