diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-03-15 19:34:59 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-03-16 18:58:48 -0700 |
commit | c812c92d1a1835f0bda783e709481188c8d92225 (patch) | |
tree | b401ede48a088ad1aaed88fe3b997cd26ff7ae08 /src/compat/rawmem.hpp | |
parent | de9ee1b9754af9d954487121947352f32d7ebb7e (diff) | |
download | tmwa-c812c92d1a1835f0bda783e709481188c8d92225.tar.gz tmwa-c812c92d1a1835f0bda783e709481188c8d92225.tar.bz2 tmwa-c812c92d1a1835f0bda783e709481188c8d92225.tar.xz tmwa-c812c92d1a1835f0bda783e709481188c8d92225.zip |
Clean up header organization
Diffstat (limited to 'src/compat/rawmem.hpp')
-rw-r--r-- | src/compat/rawmem.hpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/compat/rawmem.hpp b/src/compat/rawmem.hpp new file mode 100644 index 0000000..ac08964 --- /dev/null +++ b/src/compat/rawmem.hpp @@ -0,0 +1,30 @@ +#ifndef TMWA_COMPAT_RAWMEM_HPP +#define TMWA_COMPAT_RAWMEM_HPP + +# include <cstddef> +# include <cstdint> +# include <cstring> + +inline +void really_memcpy(uint8_t *dest, const uint8_t *src, size_t n) +{ + memcpy(dest, src, n); +} + +inline +void really_memmove(uint8_t *dest, const uint8_t *src, size_t n) +{ + memmove(dest, src, n); +} +inline +bool really_memequal(const uint8_t *a, const uint8_t *b, size_t n) +{ + return memcmp(a, b, n) == 0; +} + +inline +void really_memset0(uint8_t *dest, size_t n) +{ + memset(dest, '\0', n); +} +#endif // TMWA_COMPAT_RAWMEM_HPP |