blob: 98a44783e3a7a666137fa2e5fc8b1cd55bb42669 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _LSP_HELP_H
#define _LSP_HELP_H
#include "dged/command.h"
#include "dged/location.h"
struct buffer;
struct buffers;
struct lsp_server;
void lsp_help(struct lsp_server *, struct buffer *, struct location,
struct buffers *);
int32_t lsp_help_cmd(struct command_ctx, int, const char **);
#endif
|