2020-11-10 13:19:15 +01:00
|
|
|
#ifndef __KOLIBRI_LIB_H_INCLUDED_
|
|
|
|
#define __KOLIBRI_LIB_H_INCLUDED_
|
2011-01-28 14:00:06 +01:00
|
|
|
|
2020-11-02 19:44:51 +01:00
|
|
|
// Kolibri interface.
|
2011-01-28 14:00:06 +01:00
|
|
|
|
2020-11-02 19:44:51 +01:00
|
|
|
namespace Kolibri // All kolibri functions, types and data are nested in the (Kolibri) namespace.
|
2011-01-28 14:00:06 +01:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-11-10 13:19:15 +01:00
|
|
|
#endif // __KOLIBRI_LIB_H_INCLUDED_
|