Newer
Older
tree-os / src / include / message.h
@lukas lukas on 25 Aug 2021 149 bytes :refactor terminal
#ifndef MESSAGE_H
#define MESSAGE_H

#include <stdint.h>

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

#endif