The error paths are not tested and are mostly for NULL allocations so it makes more sense to use runtime asserts for now for simplicity's sake.
14 lines
189 B
C
14 lines
189 B
C
/*
|
|
* Copyright (c) Camden Dixie O'Brien
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
#ifndef DESUGAR_H
|
|
#define DESUGAR_H
|
|
|
|
#include "regex.h"
|
|
|
|
void desugar_regex(regex_t *regex);
|
|
|
|
#endif
|