2020-10-16 09:00:05 +02:00
|
|
|
/* 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);
|
2020-10-16 09:00:05 +02:00
|
|
|
|
2023-10-30 15:35:14 +01:00
|
|
|
#if defined (__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-10-16 09:00:05 +02:00
|
|
|
#endif /* __VELTHUIS_H */
|