Přidány funkce pro parsování integeru a longu

This commit is contained in:
2026-07-14 19:32:22 +02:00
parent 2e796fdacc
commit cc77429edd
+7
View File
@@ -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