Mako 8.2.0 API
MakoCore SDK API Documentation
Loading...
Searching...
No Matches
memutils.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2007-2025 Global Graphics Software Ltd. All rights reserved.
3 */
4
11
12#ifndef __EDLMEM_H__
13#define __EDLMEM_H__
14
15#include <string.h>
16#include "edlnamespaces.h"
17
19
20#define EDLmemset(buffer, mark, size) memset(buffer, mark, size)
21#define EDLmemcpy(dest, src, size) memcpy(dest, src, size)
22#define EDLmemcmp(dest, src, size) memcmp(dest, src, size)
23
25
26#endif /* __EDLMEM_H__ */
EDL C++ namespace(s)
#define _BEGIN_EDL_NAMESPACE
Definition edlnamespaces.h:75
#define _END_EDL_NAMESPACE
Definition edlnamespaces.h:76