Initial commit. Able to add int to the beginning and end of the list, as well as traverse the list.

This commit is contained in:
amazing-username
2019-07-19 00:33:27 -04:00
commit 1867267b06
4 changed files with 87 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
cmake_minimum_required(VERSION 3.10)
project(klist)
set (INCLUDE
include/klist.h
include/types.h
)
set (SOURCES
src/klist.c
)
include_directories(${CMAKE_CURRENT_LIST_DIR}/include/)
add_library(klist STATIC ${SOURCES} ${INCLUDE})