From cc77429edd5b975e64c7ef60663f6a8d47091f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Kala=C5=A1=20=28Floxen=29?= Date: Tue, 14 Jul 2026 19:32:22 +0200 Subject: [PATCH] =?UTF-8?q?P=C5=99id=C3=A1ny=20funkce=20pro=20parsov=C3=A1?= =?UTF-8?q?n=C3=AD=20integeru=20a=20longu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/int.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 include/int.h diff --git a/include/int.h b/include/int.h new file mode 100644 index 0000000..79a9438 --- /dev/null +++ b/include/int.h @@ -0,0 +1,7 @@ +#ifndef ASTER_INT_H +#define ASTER_INT_H + +unsigned long parse_u32(const char *s, int *ok); +long parse_i32(const char *s, int *ok); + +#endif