Skip to content

DarkCasterX/MyCoolCode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

MyCoolCode

Just something to play around with.

So far, all I have is a C implementation of Linked Lists for practice, will add more code with interesting data structure implementations in the future. Feel free to give feddback on how to more efficiently code the data structures of any of the functions I use with them.

----------Compiling instructions-----------

  1. Compile listlib.c with the -c switch to create an object file which gives access to all the functionality of the header

E.g: gcc listlib.c -c

  1. Compile whatever code you made by linking listlib

E.g: gcc code.c -o code listlib.o

  1. If you're using a different compiler, search up how to make pure object files (not executables) with your compiler of choice. Also, search up how to link your own object files in your executables (or binaries).

About

Just something to play around with.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages