ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/docs/user_list.txt
Revision: 1.2
Committed: Sun Aug 24 20:36:25 2003 UTC (20 years, 9 months ago) by tdb
Content type: text/plain
Branch: MAIN
CVS Tags: LIBSTATGRAB_0_5_1, LIBSTATGRAB_0_5
Changes since 1.1: +21 -5 lines
Log Message:
Tidy user_list too.

File Contents

# User Rev Content
1 tdb 1.2 User Statistics
2     ===============
3 pajs 1.1
4 tdb 1.2 $Id$
5    
6     Data Structure
7     --------------
8    
9     A structure of type user_stat_t is used:
10 pajs 1.1
11     typedef struct{
12     char *name_list;
13     int num_entries;
14     }user_stat_t;
15    
16 tdb 1.2 name_list contains a space seperated list of the logged in users.
17     num_entries is the number of users logged in.
18    
19     Functions
20     ---------
21    
22     user_stat_t *get_user_stats();
23    
24     get_user_stats() returns a static user_stat_t structure.
25    
26     Examples
27     --------
28 pajs 1.1
29 tdb 1.2 An example can be found in examples/user_list.c