blob: 7ef2c4f690ad03e92b6818a2126b99736173203e (
plain)
1
2
3
4
5
6
7
8
|
// Logic for parsing numbers
#pragma once
#include "../ast.h"
#include "context.h"
ast_t *parse_int(parse_ctx_t *ctx, const char *pos);
ast_t *parse_num(parse_ctx_t *ctx, const char *pos);
|