Header guards....

This commit is contained in:
Imbus 2025-09-05 01:38:42 +02:00
parent 14d1667424
commit d7af70719c

View file

@ -1,3 +1,6 @@
#ifndef BUF_H
#define BUF_H
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
@ -46,3 +49,5 @@ uint64_t buf_read_u64(const uint8_t *buf, size_t *index);
// //
// double buf_read_f64(const uint8_t *buf, size_t *index); // double buf_read_f64(const uint8_t *buf, size_t *index);
// double buf_read_f64_auto(const uint8_t *buf, size_t *index); // double buf_read_f64_auto(const uint8_t *buf, size_t *index);
#endif // BUF_H