about summary refs log tree commit diff
path: root/cccl.c
blob: 58301f52c92264845ad1e174c43b78fe32141e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "cccl.h"

#include <stddef.h>
#include <stdio.h>


void cccl(struct cccl_File file)
{
    struct cccl_Token tokens[TOKENS_LIMIT];

    size_t tokens_amount = tokenize(file.buffer, file.size, tokens, TOKENS_LIMIT);
    printf("Read: %lu\n", tokens_amount);
}