blob: ea5198730589006421d62ba58bba595b66934aab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _LSP_REFERENCES_H
#define _LSP_REFERENCES_H
#include <stdint.h>
#include "dged/command.h"
#include "dged/location.h"
struct lsp_server;
struct buffer;
struct buffers;
void lsp_references(struct lsp_server *server, struct buffer *buffer,
struct location at, struct buffers *buffers);
int32_t lsp_references_cmd(struct command_ctx ctx, int argc,
const char *argv[]);
#endif
|