mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
82eca4bc86
The main change here is to reorder headers.
11 lines
268 B
C++
11 lines
268 B
C++
// Prototypes for functions for executing builtin_printf functions.
|
|
#ifndef FISH_BUILTIN_PRINTF_H
|
|
#define FISH_BUILTIN_PRINTF_H
|
|
|
|
#include <cstring>
|
|
#include <cwchar>
|
|
|
|
class parser_t;
|
|
|
|
int builtin_printf(parser_t &parser, io_streams_t &streams, wchar_t **argv);
|
|
#endif
|