Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

foo.h
void f1(int &);
static void f2() {}
inline void foo() {
  static int i;
  f1(i);
  f2();
}
inline void foo2() {
}
void foo_ext() {}