2023-01-21 18:31:50 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2023 jordi fita mas <jfita@peritasoft.com>
|
|
|
|
*
|
2023-01-21 19:04:31 +00:00
|
|
|
* SPDX-License-Identifier: PostgreSQL
|
2023-01-21 18:31:50 +00:00
|
|
|
*/
|
|
|
|
#ifndef VAT_ES_H
|
|
|
|
#define VAT_ES_H 1
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
char * check_es_vat(const char *str, size_t len);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* VAT_ES_H */
|