~ubuntu-branches/ubuntu/utopic/tinymux/utopic

« back to all changes in this revision

Viewing changes to src/help.h

  • Committer: Bazaar Package Importer
  • Author(s): Ervin Hearn III
  • Date: 2008-04-11 23:18:25 UTC
  • mfrom: (1.1.5 upstream) (6.1.1 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080411231825-1pq4trckagyk8roo
Tags: 2.6.5.27-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// help.h
2
2
//
3
 
// $Id: help.h,v 1.1 2003/01/22 19:58:25 sdennis Exp $
 
3
// $Id: help.h 8 2006-09-05 01:55:58Z brazilofmux $
4
4
//
5
5
 
6
6
#define  TOPIC_NAME_LEN     30
7
7
 
8
8
typedef struct
9
9
{
10
 
  long pos;         /* index into help file */
11
 
  int len;          /* length of help entry */
 
10
  size_t pos;         /* index into help file */
 
11
  size_t len;         /* length of help entry */
12
12
  char topic[TOPIC_NAME_LEN + 1];   /* topic of help entry */
13
13
} help_indx;
14
14