This commit is contained in:
2025-07-28 09:03:00 +01:00
commit f86fcc977e
6 changed files with 174 additions and 0 deletions

10
CMakeLists.txt Normal file
View File

@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.31)
project(cprotohackers C)
set(CMAKE_C_STANDARD 23)
add_executable(cprotohackers main.c
main.h
data.c
data.h)
target_link_libraries(cprotohackers wsock32 ws2_32)