blob: 5c18b26e64373faa15b2491aee408a364430623b [file] [log] [blame]
/* liblouis Braille Translation and Back-Translation Library
Copyright (C) 2017 Davy Kager
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved. This file is offered as-is,
without any warranty. */
#include <stdio.h>
#include <stdlib.h>
#include "liblouis.h"
#include "brl_checks.h"
int
main(int argc, char **argv)
{
const char *tableList = "tables/unicode.dis,tables/en-us-comp6.ctb";
const char *str = "én";
const char *expected = "⠄⡳⠭⠴⠴⠑⠔⠄⠝";
int mode;
int cursorPos;
int result = 0;
mode = 0;
cursorPos = 0;
result |= check_translation_full(tableList, str, NULL, expected, mode, &cursorPos);
cursorPos = 1;
result |= check_translation_full(tableList, str, NULL, expected, mode, &cursorPos);
mode = compbrlAtCursor;
cursorPos = 0;
result |= check_translation_full(tableList, str, NULL, expected, mode, &cursorPos);
cursorPos = 1;
result |= check_translation_full(tableList, str, NULL, expected, mode, &cursorPos);
lou_free();
return result;
}