blob: df84f0f0455c252b751d0aa79442950b999c9008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef STATUS_H
#define STATUS_H
#include <stddef.h>
#include "editor.h"
#include "options.h"
#include "window.h"
size_t statusline_format_find_error(const char *str);
void sf_format (
const Window *window,
const GlobalOptions *opts,
InputMode mode,
char *buf,
size_t size,
const char *format
);
#endif
|