about summary refs log tree commit diff
path: root/lib/util/nstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util/nstring.h')
-rw-r--r--lib/util/nstring.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/util/nstring.h b/lib/util/nstring.h
index 5159277c..8829617d 100644
--- a/lib/util/nstring.h
+++ b/lib/util/nstring.h
@@ -146,7 +146,7 @@ strncaseeq(const char * const comparand,
 
      - If the function can't get the memory, it returns 'pm_strsol',
        which is a string that is in static memory that contains text
-       indicating an out of memory failure has occurred, intead of
+       indicating an out of memory failure has occurred, instead of
        NULL.  This makes it much easier for programs to ignore this
        possibility.
 
@@ -209,6 +209,16 @@ bool
 pm_strishex(const char * const subject);
 
 void
+pm_string_to_long(const char *   const string,
+                  long *         const longP,
+                  const char **  const errorP);
+
+void
+pm_string_to_int(const char *   const string,
+                 int *          const intP,
+                 const char **  const errorP);
+
+void
 pm_string_to_uint(const char *   const string,
                   unsigned int * const uintP,
                   const char **  const errorP);