summaryrefslogtreecommitdiff
path: root/lib/atou.c
diff options
context:
space:
mode:
authorkarl <karl>2004-05-14 17:07:14 +0000
committerkarl <karl>2004-05-14 17:07:14 +0000
commit7af5fd0fe2d930e0686dc989c239479bf23d01e2 (patch)
treeebdb74bede6f8806e79f2ce5e9a2375f8867904c /lib/atou.c
parente9f0ddc0f8b3ff1a8419acef3ddad9cc81dc1231 (diff)
downloadfontutils-7af5fd0fe2d930e0686dc989c239479bf23d01e2.tar.gz
checkpoint
Diffstat (limited to 'lib/atou.c')
-rw-r--r--lib/atou.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/atou.c b/lib/atou.c
new file mode 100644
index 0000000..d2e1cda
--- /dev/null
+++ b/lib/atou.c
@@ -0,0 +1,30 @@
+/* atou.c: like atoi, but if the number is negative, abort.
+
+Copyright (C) 1992, 95 Free Software Foundation, Inc.
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Library General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public
+License along with this library; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+
+#include "config.h"
+
+unsigned
+atou P1C(const_string, s)
+{
+ int i = atoi (s);
+
+ if (i < 0)
+ FATAL1 ("I expected a positive number, not %d", i);
+
+ return i;
+}