blob: 1cabc7ac1db4ff61756ab6d8aacf373a5478402e (
plain)
1
2
3
4
5
6
7
|
#pragma once
#include <stddef.h>
// TODO since this is shared with the kernel, maybe i could turn this into an
// stb-style header file
int memcmp(const void *s1, const void *s2, size_t n);
|