Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

types.h
#ifndef ANI_TYPES_H
#define ANI_TYPES_H

/**
 * Simple typedefs for commonly used numeric types. Requires stdint.h
 * and stddef.h
 */

typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef size_t usize;
typedef off_t size;

#endif