YASH 0.1
CLI written in C
Loading...
Searching...
No Matches
parse.h
Go to the documentation of this file.
1
9#pragma once
10
11// ============================================================================
12// Includes
13// ============================================================================
14
15#include "yash.h"
16
17// ============================================================================
18// Public Functions
19// ============================================================================
20
29int parse_line(char* line, Line* line_out);
30
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.