What is this use of the colon called?
The following code is taken from the book Learn Core Audio.
int main(int argc, const char * argv[])
Cleanup is a label. You can use
goto cleanup;
In your code to redirect your execution from cleanup label.