fragmentize 0.2.1

A lexer for C source code. This is mainly for me, I make no guarantees about breaking changes, so you probably shouldn't use this.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#define FOO 982

#define PRINT_HELLO_WORLD() do {         \
    printf("Hello, ");                   \
    printf("World!\n");                  \
} while(0)


// some comments
#define PRINT_HELLO_WORLD_DOCUMENTED() do {         \
    printf("Hello, ");                   \
    printf("World!\n");                  \
} while(0)