moved shit around for multi language
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
blackbeard420 2021-12-07 18:39:07 -05:00
parent 96b14c9c42
commit 1cef478e9b
Signed by: blackbeard420
GPG Key ID: 88C719E09CDDA4A5
8 changed files with 3 additions and 3 deletions

BIN
c/day1 Executable file

Binary file not shown.

View File

@ -1,7 +1,7 @@
#include <stdlib.h>
#include <stdio.h>
#define INPUT "inputs/input-day1"
#define INPUT "../inputs/input-day1"
void
first()

BIN
c/day2 Executable file

Binary file not shown.

View File

@ -2,7 +2,7 @@
#include <stdio.h>
#include <string.h>
#define INPUT "inputs/input-day2"
#define INPUT "../inputs/input-day2"
int
first()

BIN
c/day3 Executable file

Binary file not shown.

View File

@ -3,7 +3,7 @@
#include <string.h>
#include <stdint.h>
#define INPUT "inputs/input-day3"
#define INPUT "../inputs/input-day3"
#define BIT_CHECK(v, n) (v >> n) & 1U
#define BIT_SET(v, n) (v |= 1U << n)