mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-14 10:18:02 +00:00
This change includes many bug fixes, for the NT polyfills, strings, memory, boot, and math libraries which were discovered by adding more tools for recreational programming, such as PC emulation. Lemon has also been vendored because it works so well at parsing languages.
24 lines
621 B
C
24 lines
621 B
C
#ifndef COSMOPOLITAN_TOOL_CALC_CALC_H_
|
|
#define COSMOPOLITAN_TOOL_CALC_CALC_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct Token {
|
|
const char *s;
|
|
size_t n;
|
|
};
|
|
|
|
struct Numbers {
|
|
struct Numbers *n;
|
|
long double x;
|
|
};
|
|
|
|
static void SyntaxError(void) noreturn;
|
|
static long double ParseNumber(struct Token);
|
|
static void NumbersFree(struct Numbers *);
|
|
static struct Numbers *NumbersAppend(struct Numbers *, long double);
|
|
static long double CallFunction(struct Token, struct Numbers *);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_TOOL_CALC_CALC_H_ */
|