Started writing C headers

This commit is contained in:
2021-04-10 17:37:05 -05:00
parent 8faf353425
commit 505213b7dc
5 changed files with 90 additions and 0 deletions

12
include/process.h Normal file
View File

@@ -0,0 +1,12 @@
#pragma once
#include <stddef.h>
struct process_state_t;
struct process_t
{
size_t priority;
struct process_state_t *state;
};