Skip to content
Snippets Groups Projects
Select Git revision
  • 988f9566cdcb9d00ff0202c53db68a4706252d8c
  • master default protected
  • yassin.elhakoun-master-patch-15592
  • yassin.elhakoun-master-patch-40090
  • pk
  • high-order-functions
6 results

math.js

Blame
  • Forked from programmation_sequentielle / cours
    Source project has a limited visibility.
    queue.h 190 B
    #include <stdbool.h>
    #ifndef _QUEUE_H_
    #define _QUEUE_H_
    
    typedef struct _queue {
        int capacity, tail;
        int *data;
    } queue;
    
    bool is_empty(queue q);
    void queue_init(queue *q);
    
    #endif