summaryrefslogtreecommitdiffstats
path: root/trunk/source/libutil.h
blob: 73f8a849cf648051f74cc464c1ebd0b852b440e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 *  File:       libutil.h
 *  Summary:    System indepentant functions 
 *
 *  Change History (most recent first):
 *
 *      <1>   2001/Nov/01        BWR     Created
 *
 */

#ifndef LIBUTIL_H
#define LIBUTIL_H

void get_input_line( char *const buff, int len );

#ifdef NEED_USLEEP
void usleep( unsigned long time );
#endif

#ifdef NEED_SNPRINTF
int snprintf( char *str, size_t size, const char *format, ... );
#endif

#endif