From 104330a399f405b83328525bb2be55b360109b16 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 28 May 2023 19:29:10 +0200 Subject: improve struct token --- test.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'test.c') diff --git a/test.c b/test.c index cb81b9c..1d6c01f 100644 --- a/test.c +++ b/test.c @@ -1,6 +1,6 @@ /* coment */ -#if 1+1 < (-2*2) +#if 1+1 < (-2*'a') wawa #elif 9<<1 #define wow 3 @@ -16,13 +16,15 @@ int add (int x, int y) { struct foo {struct foo *foo;}; int abs(int x){ - return (x ^ x >> 31) - (x >> 31); + return (x ^ x >> 3\ +1) - (x >> 31); } int popcnt(unsigned x) { int n = 0; while (x) x >>= 1, n++; - return n + sizeof &"รก"[0]; + return n + sizeof "ab\r\ +c"; } struct f { -- cgit v1.2.3