mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-19 06:10:01 +01:00
23 lines
449 B
C
23 lines
449 B
C
#ifndef VJ_X86_H
|
|
#define VJ_X86_H
|
|
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
extern void *(* veejay_memcpy)(void *to, const void *from, size_t len);
|
|
|
|
extern void *(* veejay_memset)(void *to, uint8_t val, size_t len);
|
|
|
|
//#define veejay_memcpy(t,f,l) memcpy(t,f,l)
|
|
|
|
extern void mymemset_generic(void *s, char c, size_t count);
|
|
|
|
extern void vj_mem_init(void);
|
|
|
|
extern char *get_memcpy_descr( void );
|
|
|
|
extern void *vj_malloc(unsigned int size);
|
|
|
|
#endif
|