8 lines
140 B
C
8 lines
140 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
|
|
#define LONGSTR_MAX 30
|
|
|
|
bool startswith(char *str, char *sub);
|
|
void size_to_human(char *buf, long size);
|