forked from KolibriOS/kolibrios
cd50f4af3c
git-svn-id: svn://kolibrios.org@8140 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
469 B
C++
17 lines
469 B
C++
#ifndef __KOLIBRI_LIB_H_INCLUDED_
|
|
#define __KOLIBRI_LIB_H_INCLUDED_
|
|
|
|
// Kolibri interface.
|
|
|
|
namespace Kolibri // All kolibri functions, types and data are nested in the (Kolibri) namespace.
|
|
{
|
|
unsigned int StrLen(const char *str);
|
|
char *StrCopy(char *dest, const char *src);
|
|
void *MemCopy(void *dest, const void *src, unsigned int n);
|
|
void *MemSet(void *s, char c, unsigned int n);
|
|
|
|
double Floor(double x);
|
|
}
|
|
|
|
#endif // __KOLIBRI_LIB_H_INCLUDED_
|