mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
10 lines
180 B
C
10 lines
180 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "antlr4-runtime.h"
|
||
|
|
||
|
std::string unquote_string(std::string text);
|
||
|
|
||
|
std::string unquote_string_terminal(antlr4::tree::TerminalNode* node);
|