capitalized_word.c
324 Bytes
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "liblouis.h"
#include "brl_checks.h"
int
main (int argc, char **argv)
{
const char *str1 = "World ";
const int expected_pos1[]={0,1,2,3,4,3};
int result = check_cursor_pos(TRANSLATION_TABLE, str1, expected_pos1);
lou_free();
return result;
}