2 * Copyright (C) 1995-2005, Index Data ApS
3 * See the file LICENSE for details.
5 * $Id: atoin.c,v 1.6 2005-01-15 19:47:10 adam Exp $
10 * \brief Implements atoi_n function.
19 #include <yaz/marcdisp.h>
22 * atoi_n: like atoi but reads at most len characters.
24 int atoi_n (const char *buf, int len)
30 if (isdigit (*(const unsigned char *) buf))
31 val = val*10 + (*buf - '0');