jes/src-c/core/LineEndings.h
2018-07-25 20:47:02 -04:00

21 lines
220 B
C++

#ifndef LINEENDINGS_H
#define LINEENDINGS_H
#include "Span.h"
class LineEndings
{
public:
enum Type
{
LF,
CRLF,
CR,
COUNT,
};
static const Span spans[COUNT];
};
#endif