Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rohanshukla94/stack
Stack in C using Generics
https://github.com/rohanshukla94/stack
c generics stack
Last synced: 9 days ago
JSON representation
Stack in C using Generics
- Host: GitHub
- URL: https://github.com/rohanshukla94/stack
- Owner: rohanshukla94
- Created: 2017-02-07T22:59:52.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-12T19:41:41.000Z (almost 8 years ago)
- Last Synced: 2024-11-08T08:49:30.266Z (2 months ago)
- Topics: c, generics, stack
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stack
Using Generics in C++.## Usage
void stack_init(stack *s, int elementSize, void(*free_function)(void*));void stack_destroy(stack *s);
void stack_push(stack *s, void *elementAddress);
void stack_pop(stack *s, void *elementAddress);