2001-02-17 14:19:19 +02:00
|
|
|
/***********************************************************************
|
|
|
|
Memory primitives
|
|
|
|
|
|
|
|
(c) 1994, 1995 Innobase Oy
|
|
|
|
|
|
|
|
Created 5/30/1994 Heikki Tuuri
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
UNIV_INLINE
|
|
|
|
void*
|
|
|
|
ut_memcpy(void* dest, void* sour, ulint n)
|
|
|
|
{
|
|
|
|
return(memcpy(dest, sour, n));
|
|
|
|
}
|
|
|
|
|
|
|
|
UNIV_INLINE
|
|
|
|
void*
|
|
|
|
ut_memmove(void* dest, void* sour, ulint n)
|
|
|
|
{
|
|
|
|
return(memmove(dest, sour, n));
|
|
|
|
}
|
|
|
|
|
|
|
|
UNIV_INLINE
|
|
|
|
int
|
|
|
|
ut_memcmp(void* str1, void* str2, ulint n)
|
|
|
|
{
|
|
|
|
return(memcmp(str1, str2, n));
|
|
|
|
}
|
|
|
|
|
|
|
|
UNIV_INLINE
|
|
|
|
char*
|
|
|
|
ut_strcpy(char* dest, char* sour)
|
|
|
|
{
|
|
|
|
return(strcpy(dest, sour));
|
|
|
|
}
|
|
|
|
|
|
|
|
UNIV_INLINE
|
|
|
|
ulint
|
2002-07-23 18:31:22 +03:00
|
|
|
ut_strlen(const char* str)
|
2001-02-17 14:19:19 +02:00
|
|
|
{
|
|
|
|
return(strlen(str));
|
|
|
|
}
|
|
|
|
|
|
|
|
UNIV_INLINE
|
|
|
|
int
|
|
|
|
ut_strcmp(void* str1, void* str2)
|
|
|
|
{
|
|
|
|
return(strcmp((char*)str1, (char*)str2));
|
|
|
|
}
|
|
|
|
|