File: tripleTrans.c

package info (click to toggle)
liblouisutdml 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,188 kB
  • ctags: 1,825
  • sloc: ansic: 18,386; sh: 8,978; makefile: 803; java: 108; xml: 18
file content (17 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "liblouisutdml.h"

int
main (int argc, char **argv)
{
  lbu_translateFile ("preferences.cfg", argv[1], "trans1", NULL, NULL, 
  0);
  lbu_translateFile ("preferences.cfg", argv[1], "trans2", NULL, NULL, 
  0);
  lbu_translateFile ("preferences.cfg", argv[1], "trans3", NULL, NULL, 
  0);
  lbu_free ();
  return 0;
}