Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

macros.h
#ifndef ANI_MACROS_H
#define ANI_MACROS_H

/**
 * ARRAY_SIZE - get the number of elements in a visible array.
 *
 * DOES NOT WORK ON POINTERS
 */
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))

#endif