feat: add linux code style formatting
All checks were successful
CI / build (pull_request) Successful in 13s
CI / build (push) Successful in 13s

This commit was merged in pull request #5.
This commit is contained in:
2026-03-14 16:38:25 +01:00
parent 2885daf577
commit 79997dbce2
8 changed files with 834 additions and 25 deletions

View File

@@ -1,6 +1,6 @@
#ifndef CURTLE_H
#define CURTLE_H
#include "curtle/linear_algebra.h"
#include "curtle/vector.h"
#endif

View File

@@ -1,11 +1,12 @@
#ifndef CURTLE_VECTOR_H
#define CURTLE_VECTOR_H
typedef struct {
struct vec2
{
double x;
double y;
} vec2;
};
vec2 vec2_add(vec2 a, vec2 b);
struct vec2 vec2_add(struct vec2 a, struct vec2 b);
#endif