sanskrit-iast/velthuis.h

18 lines
311 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __VELTHUIS_H
#define __VELTHUIS_H
2023-10-30 15:35:14 +01:00
#if defined (__cplusplus)
extern "C" {
#endif
2021-04-16 10:03:08 +02:00
int encode_velthuis_to_iast(const char *text, char **out);
int encode_iast_to_velthuis(const char *text, char **out);
2023-10-30 15:35:14 +01:00
#if defined (__cplusplus)
}
#endif
#endif /* __VELTHUIS_H */