#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "fret.h"
#include "scans_text.h"
#include "common.h"
Include dependency graph for scans_text.c:
Data Structures | |
struct | State |
Describes the internal state of a Scan. More... | |
Functions | |
bool | scanAscii (const unsigned char *const pBuffer, const size_t length, void *const pState, Gram *pGram) |
void * | newStateAscii (void) |
Currently implements one Scan for a string of 1-byte ASCII characters.
|
Creates a variable that holds the state of the Scan between calls. |
|
Function scans a buffer for a series of uninterrupted printable ASCII characters. |