File: main.c

package info (click to toggle)
cfingerd 1.3.2-11.0
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 600 kB
  • ctags: 396
  • sloc: ansic: 3,220; perl: 572; makefile: 155; sh: 52
file content (21 lines) | stat: -rw-r--r-- 302 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * USERLIST
 * version 1.0.0
 *
 * by Ken Hollis for CFINGERD
 *
 * Released under the GPL for public/private use.
 */

#include "userlist.h"
#include "proto.h"

void main(int argc, char *argv[])
{
    initialize_userlist();

    if (argc > 1)
	handle_options(argc, argv);

    process_display();
}