blob: c8c2c0b1e4484956b8465d4552507e1fcdd3f897 [file] [log] [blame]
/* liblouis Braille Translation and Back-Translation Library
Copyright (C) 2012 Swiss Library for the Blind, Visually Impaired and Print Disabled
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 <string.h>
#include <stdlib.h>
#include "liblouis.h"
#include "brl_checks.h"
int
main(int argc, char **argv)
{
const char* table = "tests/tables/pass2.ctb";
int result = 0;
/* First check a plain word to see if the table works */
result = check_translation(table, "Rene", NULL, "rene");
/* then try a word which uses pass2 */
result |= check_translation(table, "Reno", NULL, "ren'o");
lou_free();
return result;
}