summaryrefslogtreecommitdiff
path: root/src/user/include/knob/block.h
blob: 462557731baa846677e16a21d2b9572e3b89d97b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef KNOB_BLOCK_H
#define KNOB_BLOCK_H

#include <stdbool.h>
#include <stdint.h>

void blockcpy(void *to, const void *from, uint32_t size);
bool blockequ(const void *a, const void *b, uint32_t size) __attribute__ ((__pure__));

#endif