X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fatoin.c;h=4ee031307476fb943f35ce16566360955755a114;hp=b1d9fda3785fb5b5d5ecf62b8901fd90604e7789;hb=236966a07ceb8e28649470995f88251c37423715;hpb=2788a4851b551e1a3efb320a2878b809f2d8a9d7 diff --git a/src/atoin.c b/src/atoin.c index b1d9fda..4ee0313 100644 --- a/src/atoin.c +++ b/src/atoin.c @@ -1,9 +1,9 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2009 Index Data + * Copyright (C) Index Data * See the file LICENSE for details. */ -/** +/** * \file atoin.c * \brief Implements atoi_n function. */ @@ -13,28 +13,36 @@ #endif #include -#include #include +#include -/** - * atoi_n: like atoi but reads at most len characters. - */ -int atoi_n (const char *buf, int len) +int atoi_n(const char *buf, int len) { int val = 0; while (--len >= 0) { - if (isdigit (*(const unsigned char *) buf)) + if (yaz_isdigit(*buf)) val = val*10 + (*buf - '0'); buf++; } return val; } +int atoi_n_check(const char *buf, int size, int *val) +{ + int i; + for (i = 0; i < size; i++) + if (!yaz_isdigit(buf[i])) + return 0; + *val = atoi_n(buf, size); + return 1; +} + /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab