mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
13 lines
186 B
C
13 lines
186 B
C
#include <quiz.h>
|
|
#include <stdint.h>
|
|
#include <assert.h>
|
|
|
|
QUIZ_CASE(liba_stdint) {
|
|
int8_t i = -1;
|
|
int j = -1;
|
|
assert(i == -1);
|
|
assert(i == j);
|
|
assert(sizeof(int8_t) == 1);
|
|
}
|
|
|