home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume25
/
finger
/
part01
/
tsel.h
< prev
next >
Wrap
Text File
|
1992-04-03
|
739b
|
29 lines
/*
* tsel.h -- structures for user input "terminal selectors"
*
* Copyright (C) 1987, 1990 Philip L. Budne
*
* This file is part of "Phil's Finger Program".
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
*/
# define TSEL_RCSID "$Id: tsel.h,v 3.0 90/07/06 13:11:55 budd Rel $"
typedef struct tsel {
char *ts_name; /* name of selector */
short ts_len; /* length of string */
short ts_len2; /* length - 3 */
struct tsel *ts_next; /* next in chain */
} TSEL;
/*
* Local variables:
* comment-column: 40
* End:
*/