Started writing C headers
This commit is contained in:
12
include/process.h
Normal file
12
include/process.h
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user