alsa.audio: move handling of XRUN when writting to the slave task
[AROS.git] / rom / filesys / afs / extstrings.h
blob94d3cbe22b086a9571b14a7c9d9d9f21336605c6
1 #ifndef EXTSTRINGS_H
2 #define EXTSTRINGS_H
4 /*
5 Copyright © 1995-2008, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include "os.h"
10 #include <string.h>
12 UBYTE capitalch(UBYTE, UBYTE);
13 LONG noCaseStrCmp(const char *, const char *, UBYTE, int);
14 LONG StrCmp(CONST_STRPTR, CONST_STRPTR);
15 ULONG StrLen(CONST_STRPTR);
16 void StrCpyToBstr(const char *, char *, int);
17 #define StrCpyFromBstr(src,dst) CopyMem(src+1,dst,src[0]); dst[(ULONG)src[0]]=0
19 #endif