14 lines
194 B
C
14 lines
194 B
C
/*
|
|
* Copyright (c) Camden Dixie O'Brien
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
#ifndef DESUGAR_H
|
|
#define DESUGAR_H
|
|
|
|
#include "parse.h"
|
|
|
|
void desugar_regex(parse_tree_t *regex);
|
|
|
|
#endif
|