Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

textual_stat.h
#ifndef _SYS_STAT_H
#define _SYS_STAT_H

#include "textual_time.h"

struct stat {
  struct timespec st_atim;
  struct timespec st_mtim;
};

#endif