#ifndef __Utils_H
#define __Utils_H

#include "kernel.h"

extern _kernel_oserror* check_hardware(void);
int CFN_mul16(int, int);
char* String_StripBlanks(char* string);
const _kernel_oserror* RMEnsure(const char* module, int vers, const char* path);
#pragma -v1 /* hint to the compiler to check f/s/printf format */
const _kernel_oserror* ErrorFromString(unsigned int errnum, const char* pformat, ...);
#pragma -v0 /* return to default */
int strnicmp(const char *a, const char* b, int n);
int stricmp(const char *a, const char* b);

#endif
