summaryrefslogtreecommitdiff
path: root/rushs/evalexpr/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'rushs/evalexpr/main.c')
-rw-r--r--rushs/evalexpr/main.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/rushs/evalexpr/main.c b/rushs/evalexpr/main.c
deleted file mode 100644
index 4062426..0000000
--- a/rushs/evalexpr/main.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-
-//#include "traffic_lights/traffic_lights.h"
-unsigned char rol(unsigned char value, unsigned char roll);
-
-int main(void)
-{
- unsigned char l1 = 0b01010101;
- unsigned char l2 = 3;
-
- printf("l1: %b", rol(l1, l2));
-
- return 0;
-}