feat: add linux code style formatting
This commit was merged in pull request #5.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#ifndef CURTLE_H
|
||||
#define CURTLE_H
|
||||
|
||||
#include "curtle/linear_algebra.h"
|
||||
#include "curtle/vector.h"
|
||||
|
||||
#endif
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user