Newer
Older
tree-os / src / kernel / lib / task / message.h
@lukas lukas on 30 May 2021 162 bytes new print system
#ifndef MESSAGE_H
#define MESSAGE_H

#include <stdint.h>

typedef struct Message {
    void* data;
    uint32_t size;
    struct Message* next;
} Message;

#endif