typo.
[AROS.git] / workbench / c / Shell / cliLen.c
blob298d385f84db38cf5b17868909feedc73cc6e2f8
1 /*
2 Copyright (C) 1995-2011, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "Shell.h"
8 LONG cliLen(CONST_STRPTR s)
10 LONG i;
12 for (i = 0; *s != '\0'; ++i)
13 ++s;
15 return i;