13 lines
244 B
C
13 lines
244 B
C
|
#ifndef FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_
|
||
|
#define FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_
|
||
|
#include <cstdint>
|
||
|
#include <cstddef>
|
||
|
|
||
|
namespace printer {
|
||
|
void print(uint8_t *data, size_t size);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
#endif /* FRAMEWORK_GLOBALFUNCTIONS_PRINTER_H_ */
|