This file is indexed.

/usr/share/z88dk/include/zxvgs.h is in z88dk-data 1.8.ds1-10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ZXVGS specific functions
   Created on 2002-01-21 by Yarek
030307	added #pragma output ZXVGS and #pragma -create-app
020128	added #ifndef; added bnkinfo and opensound

   $Id: zxvgs.h,v 1.1 2003/03/22 14:29:32 dom Exp $
*/

#ifndef _ZXVGS_H
#define _ZXVGS_H

#pragma output ZXVGS

/* reading the joysticks */
extern int __LIB__ j0();
extern int __LIB__ j1();
extern int __LIB__ j2();
extern int __LIB__ j3();

/* sound devices */
extern int __LIB__ opensound(int device, int mode);

/* memory banks */
extern int __LIB__ bnkfree();

/* direct loading and saving files */
extern int __LIB__ loadany(char *name, int adr, int len);
extern int __LIB__ saveany(char *name, int adr, int len);

#endif