Mako 8.2.0 API
MakoCore SDK API Documentation
Loading...
Searching...
No Matches
memutils.h File Reference

EDL portability wrappers around memset(), memcpy() and memcmp() to allow EDL to use alternate implementations where necessary. More...

#include <string.h>
#include "edlnamespaces.h"
Include dependency graph for memutils.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define EDLmemset(buffer, mark, size)
#define EDLmemcpy(dest, src, size)
#define EDLmemcmp(dest, src, size)

Detailed Description

EDL portability wrappers around memset(), memcpy() and memcmp() to allow EDL to use alternate implementations where necessary.

Macro Definition Documentation

◆ EDLmemcmp

#define EDLmemcmp ( dest,
src,
size )
Value:
memcmp(dest, src, size)

◆ EDLmemcpy

#define EDLmemcpy ( dest,
src,
size )
Value:
memcpy(dest, src, size)

◆ EDLmemset

#define EDLmemset ( buffer,
mark,
size )
Value:
memset(buffer, mark, size)