~ubuntu-branches/ubuntu/karmic/gnustep-base/karmic

« back to all changes in this revision

Viewing changes to Testing/nxst.m

  • Committer: Bazaar Package Importer
  • Author(s): Eric Heintzmann
  • Date: 2005-04-17 00:14:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050417001438-enf0y07c9tku85z1
Tags: 1.10.3-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
{
9
9
    id   table;
10
10
    int  i, times;
11
 
    
 
11
 
12
12
    if (argc < 2) {
13
13
        fprintf(stderr, "Usage: table_test filename repeat\n");
14
14
        fprintf(stderr, "       filename is a stringtable format file.\n");
17
17
    }
18
18
    if (argc == 3)
19
19
        times = atoi(argv[2]);
20
 
    else 
 
20
    else
21
21
        times = 1;
22
 
        
 
22
 
23
23
    table = [[NXStringTable alloc] init];
24
24
 
25
25
    for (i=0; i < times; i++) {