Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

emit-two.c

int bad_guy(int * i)
{
    *i = 9;
    return *i;
}

void bad_guy_test()
{
    int * ptr = 0;

    bad_guy(ptr);
}