Since BIND 9 headers are not longer public, there's no reason to keep the ISC_LANG_BEGINDECL and ISC_LANG_ENDDECL macros to support including them from C++ projects.
29 lines
689 B
C
29 lines
689 B
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/*! \file isc/regex.h */
|
|
|
|
#include <isc/types.h>
|
|
|
|
int
|
|
isc_regex_validate(const char *expression);
|
|
/*%<
|
|
* Check a regular expression for syntactic correctness.
|
|
*
|
|
* Returns:
|
|
*\li -1 on error.
|
|
*\li the number of groups in the expression.
|
|
*/
|