diff options
author | pommicket <pommicket@gmail.com> | 2022-12-31 23:28:03 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-31 23:28:03 -0500 |
commit | 57834dc0b116a62b806781ddec101bca4cda3abb (patch) | |
tree | e93e85b8cd2de7198cabe11abe1a779dbdf7b7cb /lsp.h | |
parent | 993d4f50d13c3a703d634d989af7dd8b96ae8c3d (diff) |
start moving things around
Diffstat (limited to 'lsp.h')
-rw-r--r-- | lsp.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#ifndef LSP_H_ +#define LSP_H_ + typedef u32 LSPDocumentID; typedef u32 LSPID; typedef u32 LSPRequestID; @@ -566,3 +569,5 @@ bool lsp_document_position_eq(LSPDocumentPosition a, LSPDocumentPosition b); LSPDocumentPosition lsp_location_start_position(LSPLocation location); LSPDocumentPosition lsp_location_end_position(LSPLocation location); void lsp_free(LSP *lsp); + +#endif // LSP_H_ |