File: os.h

package info (click to toggle)
afterstep 2.2.12-18.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,184 kB
  • sloc: ansic: 201,695; sh: 5,894; xml: 3,721; makefile: 2,094; perl: 1,558; cpp: 811
file content (19 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef OS_H_HEADER_INCLUDED
#define OS_H_HEADER_INCLUDED

#ifdef __cplusplus
extern "C" {
#endif

#define MAXHOSTNAME 255

Bool  mygethostname (char *client, size_t length);
char* mygetostype (void);
int   get_fd_width (void);

#ifdef __cplusplus
}
#endif


#endif /* OS_H_HEADER_INCLUDED */