home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Beijing Paradise BBS Backup
/
PARADISE.ISO
/
software
/
BBSDOORW
/
SMAILSRC.ZIP
/
PASSWD.ZIP
/
ENDPWENT.C
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-04-03
|
346 b
|
27 lines
/*
* endpwent.c: Close password file
*
* Stephen C. Trier
* March 26, 1990
*
* This program is in the public domain
*
*/
#include <stdio.h>
#include <pwd.h>
extern FILE *_pw_file;
int endpwent(void)
{
int temp;
temp = fclose(_pw_file);
_pw_file = NULL;
return temp;
}