home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume25 / finger / part01 / tsel.h < prev    next >
Text File  |  1992-04-03  |  739b  |  29 lines

  1. /*
  2.  * tsel.h -- structures for user input "terminal selectors"
  3.  *
  4.  * Copyright (C) 1987, 1990  Philip L. Budne
  5.  *
  6.  * This file is part of "Phil's Finger Program".
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 1, or (at your option)
  11.  * any later version.
  12.  *
  13.  */
  14.  
  15. # define TSEL_RCSID "$Id: tsel.h,v 3.0 90/07/06 13:11:55 budd Rel $"
  16.  
  17. typedef struct tsel {
  18.     char    *ts_name;        /* name of selector */
  19.     short    ts_len;            /* length of string */
  20.     short    ts_len2;        /* length - 3 */
  21.     struct tsel *ts_next;        /* next in chain */
  22. } TSEL;
  23.  
  24. /*
  25.  * Local variables:
  26.  * comment-column: 40
  27.  * End:
  28.  */
  29.