Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / liblouis / src / tests / backtranslate_with_letsign.c
1 #include <stdio.h>
2 #include <string.h>
3 #include <stdlib.h>
4 #include "liblouis.h"
5 #include "brl_checks.h"
6
7 int main(int argc, char **argv) {
8   int result = 0;
9   const char *tbl = "en-us-g2.ctb";
10   const char *input = "but b can ";
11   const char *expected = "b ;b c ";
12
13   result |= check_translation(tbl, input, NULL, expected);
14   result |= check_backtranslation(tbl, expected, NULL, input);
15
16   return result;
17 }