repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert between 56095 -> 55830 in arch
[AROS.git]
/
workbench
/
c
/
Shell
/
cliNan.c
blob
e437606c2d6035da3c837f6deeecb51d95df0df7
1
/*
2
Copyright (C) 1995-2010, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include
"Shell.h"
7
8
BOOL
cliNan
(
CONST_STRPTR s
)
9
{
10
for
(; *
s
!=
'\0'
; ++
s
)
11
if
(*
s
<
'0'
|| *
s
>
'9'
)
12
return
TRUE
;
13
return
FALSE
;
14
}
15