summaryrefslogtreecommitdiffstats
path: root/subopt-helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'subopt-helper.c')
-rw-r--r--subopt-helper.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/subopt-helper.c b/subopt-helper.c
index de103e1126..611af73e1f 100644
--- a/subopt-helper.c
+++ b/subopt-helper.c
@@ -263,3 +263,21 @@ static char const * parse_str( char const * const str, strarg_t * const valp )
return match;
}
+
+
+/*** common test functions ***/
+
+/** \brief Test if i is not negative */
+int int_non_neg( int * i )
+{
+ if ( *i < 0 ) { return 0; }
+
+ return 1;
+}
+/** \brief Test if i is positive. */
+int int_pos( int * i )
+{
+ if ( *i > 0 ) { return 1; }
+
+ return 0;
+}