2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
9 #include <proto/exec.h>
10 #include <proto/utility.h>
11 #include "camd_intern.h"
13 ULONG
mystrlen(char *string
){
15 while(string
[ret
]!=0) ret
++;
19 BOOL
mystrcmp(char *one
,char *two
){
21 if(*one
==0) return TRUE
;
28 char *findonlyfilename(char *pathfile
){
31 if(*pathfile
=='/') temp
=pathfile
+1;
32 if(*pathfile
==':') temp
=pathfile
+1;
39 ASM
void stuffChar( REG(d0
, UBYTE in
),REG(a3
, char **stream
)){
41 ASM
void stuffChar( REG(d0
) UBYTE in
,REG(a3
) char **stream
){
49 void mysprintf(struct CamdBase
*CamdBase
,char *string
,char *fmt
,...){
52 // You should change your proto-file, if there is a warning about const.
53 CONST_STRPTR string2
=string
;