9 lines
106 B
C
9 lines
106 B
C
|
#ifndef _WRITE_H_
|
||
|
#define _WRITE_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void write8(uint32_t to, uint8_t what);
|
||
|
|
||
|
#endif
|