summaryrefslogtreecommitdiff
path: root/src/source.cc
blob: 9234ea9d1e884559fe27fb81d4725c43213e968a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SOURCE_CC
#define SOURCE_CC

#include "common.cc"
#include "memory.cc"

struct Buffer {
  String content;
  String file;
};

#endif