This file is indexed.

/usr/include/yalecad/dbinary.h is in libycadgraywolf-dev 0.1.4+20170307gite1bf319-2build1.

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
/* ----------------------------------------------------------------- 
"@(#) dbinary.h (Yale) version 1.3 8/28/90"
FILE:	    dbinary.h                                       
DESCRIPTION:include file for binary format for graphics routines
CONTENTS:   typedefs for binary format.
DATE:	    Mar 21, 1989 - moved from draw.h
REVISIONS:  
----------------------------------------------------------------- */
#ifndef DBINARY_H
#define DBINARY_H

/* data record for draw binary files */
typedef struct {
    INT          x1 ;
    INT          x2 ;
    INT     	 y1 ;
    INT     	 y2 ;
    UNSIGNED_INT ref ; /* may be referenced by this number */
    UNSIGNED_INT color ;
    UNSIGNED_INT label ;
} DATABOX, *DATAPTR ;

#endif /* DBINARY_H */