xref: /original-bsd/lib/libtelnet/getent.c (revision d272e02a)
1 /*-
2  * Copyright (c) 1991 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)getent.c	5.1 (Berkeley) 02/28/91";
10 #endif /* not lint */
11 
12 /*
13  * Copyright (c) 1991 Regents of the University of California.
14  * All rights reserved.
15  *
16  * Redistribution and use in source and binary forms are permitted provided
17  * that: (1) source distributions retain this entire copyright notice and
18  * comment, and (2) distributions including binaries display the following
19  * acknowledgement:  ``This product includes software developed by the
20  * University of California, Berkeley and its contributors'' in the
21  * documentation or other materials provided with the distribution and in
22  * all advertising materials mentioning features or use of this software.
23  * Neither the name of the University nor the names of its contributors may
24  * be used to endorse or promote products derived from this software without
25  * specific prior written permission.
26  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
27  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
28  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29  */
30 
31 /*ARGSUSED*/
32 getent(cp, name)
33 char *cp, *name;
34 {
35 	return(0);
36 }
37 
38 /*ARGSUSED*/
39 char *
40 getstr(cp, cpp)
41 char *cp, **cpp;
42 {
43 	return(0);
44 }
45