mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 10:00:43 +08:00
12 lines
257 B
C++
12 lines
257 B
C++
// Prototypes for executing builtin_math function.
|
|
#ifndef FISH_BUILTIN_MATH_H
|
|
#define FISH_BUILTIN_MATH_H
|
|
|
|
#include "maybe.h"
|
|
|
|
class parser_t;
|
|
struct io_streams_t;
|
|
|
|
maybe_t<int> builtin_math(parser_t &parser, io_streams_t &streams, wchar_t **argv);
|
|
#endif
|