-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoubleLinkedList.h
40 lines (26 loc) · 891 Bytes
/
doubleLinkedList.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef DLL_H
#define DLL_H
#include <stdbool.h>
struct listHead {
struct listHead *next, *prev;
};
struct procInfo {
struct listHead head;
int pid;
int jobID;
int priority;
bool isExitStatusSet;
int exitStatus;
char *name;
};
extern void initList(struct listHead *head);
extern void addToBegin(struct listHead *new, struct listHead *head);
extern void addToTail(struct listHead *new, struct listHead *head);
extern struct listHead* delFromList(struct listHead *entry);
extern void moveToBegin(struct listHead *entry, struct listHead *head);
extern void moveToTail(struct listHead *entry, struct listHead *head);
extern int isEmpty(struct listHead *head);
extern void printList(struct listHead *head);
extern void mapToList(void (*f)() , struct listHead *head);
extern struct procInfo *getJobById(int numberOfJob, struct listHead *head);
#endif