revert between 56095 -> 55830 in arch
[AROS.git] / workbench / c / Shell / cliNan.c
blobe437606c2d6035da3c837f6deeecb51d95df0df7
1 /*
2 Copyright (C) 1995-2010, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "Shell.h"
8 BOOL cliNan(CONST_STRPTR s)
10 for (; *s != '\0'; ++s)
11 if (*s < '0' || *s > '9')
12 return TRUE;
13 return FALSE;