N
AME
end_c_program
- finish building a 'struct program'
S
YNTAX
#include "program.h"
struct program *end_c_program(char *
name
);
D
ESCRIPTION
This function finishes up the process of building a 'struct program'. It initializes the struct program and calls master()->add_precompiled_program with the program and the suggested name. (As sent to end_c_program). It then returns the newly built program. Note that the new program does NOT have an extra reference, if you want to keep it around and use it you have to add that reference yourself.
K
EYWORDS
program
S
EE
A
LSO
start_new_program
and
add_function