fix comments

This commit is contained in:
Greg Gauthier 2025-12-17 21:24:41 +00:00
parent e3827097f3
commit b99df2dc62
4 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
//
/*
// Created by Gregory Gauthier on 06/10/2025.
//
*/
/* game.c - Game logic implementation */
#include "../include/game.h"
#include "../include/ui.h"

View File

@ -1,6 +1,6 @@
//
/*
// Created by Gregory Gauthier on 06/10/2025.
//
*/
/* main.c - Entry point and main game loop */
/* Compile with: gcc -std=c90 -o cordle src\/\*.c -Iinclude -lncurses */

View File

@ -1,6 +1,6 @@
//
/*
// Created by Gregory Gauthier on 06/10/2025.
//
*/
/* ui.c - User interface implementation */
#include "../include/ui.h"
#include <string.h>

View File

@ -1,6 +1,6 @@
//
/*
// Created by Gregory Gauthier on 06/10/2025.
//
*/
/* words.c - Word list management implementation */
#include "../include/words.h"
#include <stdio.h>