Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1769 yogev_ezra 1
#ifndef __MENUET_LIB_H_INCLUDED_
2
#define __MENUET_LIB_H_INCLUDED_
3
 
4
// Menuet interface.
5
 
6
namespace Menuet   // All menuet functions, types and data are nested in the (Menuet) namespace.
7
{
8
	unsigned int StrLen(const char *str);
9
	char *StrCopy(char *dest, const char *src);
10
	void *MemCopy(void *dest, const void *src, unsigned int n);
11
	void *MemSet(void *s, char c, unsigned int n);
12
 
13
	double Floor(double x);
14
}
15
 
16
#endif  // __MENUET_LIB_H_INCLUDED_