summaryrefslogtreecommitdiff
path: root/src/flexdef.h
diff options
context:
space:
mode:
authorrlar <rlar>2016-02-28 16:49:53 +0100
committerWill Estes <westes575@gmail.com>2016-03-08 13:19:20 -0500
commit1d5b34b52a77767763168175972aef3ebabbdf54 (patch)
treece534c2081bf55cb181e3c6acbcf498a44494f42 /src/flexdef.h
parent609af5775f7277679dc3bd966b36f04cf7ccf2a8 (diff)
change return type and rename int htoi()/otoi() --> unsigned int htoui()/otoui()
Diffstat (limited to 'src/flexdef.h')
-rw-r--r--src/flexdef.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flexdef.h b/src/flexdef.h
index 27ad610..83e8888 100644
--- a/src/flexdef.h
+++ b/src/flexdef.h
@@ -844,7 +844,7 @@ extern void flexfatal(const char *);
#endif /* ! HAVE_DECL___func__ */
/* Convert a hexadecimal digit string to an integer value. */
-extern int htoi(unsigned char[]);
+extern unsigned int htoui(unsigned char[]);
/* Report an error message formatted */
extern void lerr(const char *, ...)
@@ -883,7 +883,7 @@ extern int myctoi(const char *);
extern unsigned char myesc(unsigned char[]);
/* Convert an octal digit string to an integer value. */
-extern int otoi(unsigned char[]);
+extern unsigned int otoui(unsigned char[]);
/* Output a (possibly-formatted) string to the generated scanner. */
extern void out(const char *);