lsp-cli 0.1.6

Command-line tool for talking to Language Server Protocol (LSP) servers from the terminal.
1
2
3
4
5
6
7
8
9
10
11
12
#include "Order.h"
#include "OrderFormatter.h"

#include <stdio.h>

int main(void) {
  Order *order = sample_order();
  char summary[128];
  format_order(order, summary, sizeof(summary));
  puts(summary);
  return 0;
}