diff options
Diffstat (limited to 'zap/include/zap/mem.h')
-rw-r--r-- | zap/include/zap/mem.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/zap/include/zap/mem.h b/zap/include/zap/mem.h deleted file mode 100644 index 0364b9d..0000000 --- a/zap/include/zap/mem.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - Copyright 2022-2023 Gabriel Jensen. - This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. - If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>. -*/ - -#ifndef zap_priv_hdr_mem -#define zap_priv_hdr_mem - -#include <zap/bs.h> - -zap_priv_cdecl - -typedef struct { - void * dest; - void * src; -} zap_cpret; - -zap_attr_nthrw zap_cpret zap_cp( void * zap_restr dest,void const * zap_restr src, zap_sz num); -zap_attr_nthrw zap_i8 zap_eq( void const * lbuf,void const * rbuf,zap_sz num); -zap_attr_nthrw void zap_fill(void * dest,unsigned char val, zap_sz num); -zap_attr_nthrw void * zap_srch(void const * buf, unsigned char val, zap_sz num); - -zap_priv_cdeclend - -#endif |