File: axcalluser.h

package info (click to toggle)
uronode 2.9-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 816 kB
  • sloc: ansic: 6,288; sh: 289; makefile: 99
file content (16 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef AXCALLUSER_H
#define AXCALLUSER_H

/* Simple functions to return userid of a callsign, and */
/* username of a userid, by reading appropriate files.  */
/* Surely there's a better way to do 'getusername', but */
/* this works.                                          */
/* Dave Brown N2RJT 5/5/96                              */

/* return userid of given callsign, or -1 if not found */
int axcalluserid(char *callsign);

/* return username of given userid, or NULL if not found */
char *getusername(int userid);

#endif