mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-31 23:28:45 +00:00
db72a05e89
clangd was unable to resolve some symbols
14 lines
319 B
C++
14 lines
319 B
C++
// Prototypes for functions for executing builtin_printf functions.
|
|
#ifndef FISH_BUILTIN_PRINTF_H
|
|
#define FISH_BUILTIN_PRINTF_H
|
|
|
|
#include <cstring>
|
|
#include <cwchar>
|
|
|
|
#include "io.h"
|
|
#include "maybe.h"
|
|
|
|
class parser_t;
|
|
|
|
maybe_t<int> builtin_printf(parser_t &parser, io_streams_t &streams, const wchar_t **argv);
|
|
#endif
|