mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 11:45:05 +01:00
9 lines
165 B
C
9 lines
165 B
C
#include <stdlib.h>
|
|
#include <assert.h>
|
|
|
|
int main(void)
|
|
{
|
|
char *str = "12";
|
|
long value = strtol(str, NULL, 10);
|
|
assert((value == 12) && "value must be 12");
|
|
}
|