41int tokenize_line(
char* line,
char* tokens[],
int* num_tokens);
int parse_line(char *line, Line *line_out)
Parse a line of input and store the result in line_out.
Definition parse.c:137
int tokenize_line(char *line, char *tokens[], int *num_tokens)
Tokenize a line of input and store the result in tokens.
Definition parse.c:225
Represents a full line of user input.
Definition yash.h:100
Core data structures and constants.