mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 19:55:07 +01:00
9 lines
137 B
C
9 lines
137 B
C
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
char *str = "12";
|
|
long value = strtol(str, NULL, 10);
|
|
if (value != 12) {
|
|
return 1;
|
|
}
|
|
}
|