/* 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 #include #include #include "liblouis.h" #include "brl_checks.h" int main(int argc, char **argv) { const char* table = "en-us-comp8.ctb"; int result = 0; result = check_translation_with_mode(table, "a", NULL, "a", pass1Only); lou_free(); return result; }