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
use m4_normalize on the output strings to remove trailing spaces/tabs and consolidate...
[AROS.git]
/
workbench
/
c
/
Shell
/
cliLen.c
blob
298d385f84db38cf5b17868909feedc73cc6e2f8
1
/*
2
Copyright (C) 1995-2011, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include
"Shell.h"
7
8
LONG
cliLen
(
CONST_STRPTR s
)
9
{
10
LONG i
;
11
12
for
(
i
=
0
; *
s
!=
'\0'
; ++
i
)
13
++
s
;
14
15
return
i
;
16
}
17