aoc-2019-c

Advent of Code 2019 Solutions in C
git clone https://git.sinitax.com/sinitax/aoc-2019-c
Log | Files | Refs | README | sfeed.txt

vec_s.c (147B)


      1#include "vec_s.h"
      2
      3const struct vec2i adj[4] = {
      4	{  0, -1 },
      5	{  1,  0 },
      6	{  0,  1 },
      7	{ -1,  0 },
      8};
      9
     10char adj_c[4] = {
     11	'N', 'E', 'S', 'W'
     12};