mirror of
https://github.com/okhsunrog/vpnhide.git
synced 2026-07-28 10:23:57 +00:00
10 lines
433 B
C
10 lines
433 B
C
#include "shared/vpnhide_logic.h"
|
|
|
|
/* Stable external symbol for the otherwise static-inline freestanding parser. */
|
|
int vpnhide_diff_parse_config(const unsigned char *input, unsigned long len,
|
|
struct vpnhide_target *targets, int capacity,
|
|
int *debug)
|
|
{
|
|
return vpnhide_parse_config((const char *)input, len, targets, capacity,
|
|
debug);
|
|
}
|