From a23cb6d6f011950b11789898c10e63f4473a5200 Mon Sep 17 00:00:00 2001 From: Mikkel Thestrup Date: Sun, 30 Nov 2025 14:24:52 +0100 Subject: Updated every file and function to follow style guide --- src/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index e347552..2d0fdf7 100644 --- a/src/main.c +++ b/src/main.c @@ -1,4 +1,4 @@ -#include "cycleDetection.h" +#include "cycle_detection.h" #include #include @@ -11,9 +11,9 @@ int main(int argc, char **argv) { return 1; } - Graph *g = Graph_read(argv[1]); + Graph *g = graph_read(argv[1]); if(!g) return 2; - cycleDetection(g); - Graph_delete(g); + cycle_detection(g); + graph_delete(g); return 0; } -- cgit v1.2.3-70-g09d2