blob: 6c4aa5d58a9cb406855b9b979d0e2a14147683fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef KNOB_FORMAT_H
#define KNOB_FORMAT_H
#include <stdbool.h>
#include <stdint.h>
bool try_sntoi(const char *s, uint32_t n, uint32_t *out);
void itosz(uint32_t i, char *out);
#endif
|