- Length limits for names and comments are now enforced.
[tangerine.git] / workbench / devs / afs / extstrings.h
blobca34529cd99e7966d6c94c384a3897c331889dea
1 #ifndef EXTSTRINGS_H
2 #define EXTSTRINGS_H
4 /*
5 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include "os.h"
11 #ifdef strlen
12 #undef strlen
13 #endif
14 #define strlen StrLen
16 UBYTE capitalch(UBYTE, UBYTE);
17 LONG noCaseStrCmp(char *, char *, UBYTE, int);
18 LONG StrCmp(STRPTR, STRPTR);
19 ULONG StrLen(STRPTR);
20 void StrCpyToBstr(char *, char *, int);
21 #define StrCpyFromBstr(src,dst) CopyMem(src+1,dst,src[0]); dst[(ULONG)src[0]]=0
23 #endif