Skip to content

Instantly share code, notes, and snippets.

@welljsjs
welljsjs / queue.c
Last active February 24, 2018 22:05
Implemented a queue in C.
//
// main.c
// Queue
//
// Created by Julius Schmidt on 24.02.18.
// Copyright © 2018 Julius Schmidt. All rights reserved.
//
#include <stdio.h>
#include <stdbool.h>