Files
codeql/cpp/ql/test/query-tests/JPL_C/LOC-3/Rule 17/test.c
2018-08-02 17:53:23 +01:00

12 lines
272 B
C

typedef unsigned char uint8_t;
typedef uint8_t U8;
typedef U8 something_else;
void test1(U8* xptr) { }
void test2(U8 x) { }
void test3(unsigned char x) { }
void test4(uint8_t x){ }
void test5(something_else x){ }
static U8 test6;
static uint8_t test7;
static U8 test8 [];