File: capitalized_word.c

package info (click to toggle)
liblouis 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 7,236 kB
  • ctags: 1,138
  • sloc: ansic: 12,411; sh: 6,255; makefile: 757; perl: 43; python: 19
file content (13 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <string.h>
#include <stdlib.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};

        return check_cursor_pos(str1, expected_pos1);        
}