File: bitmap.h

package info (click to toggle)
emoslib 000380%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 47,712 kB
  • ctags: 11,551
  • sloc: fortran: 89,643; ansic: 24,200; makefile: 370; sh: 355
file content (29 lines) | stat: -rwxr-xr-x 717 bytes parent folder | download | duplicates (2)
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
#ifndef BITMAP_H
#define BITMAP_H

#ifdef INTEGER_IS_LONG
#define fortint long
#else
#define fortint int
#endif

#ifdef FORTRAN_NO_UNDERSCORE
#define MAKEMAP makemap
#define SHOWMAP showmap
#define GMAPBIT gmapbit
#else
#define MAKEMAP makemap_
#define SHOWMAP showmap_
#define GMAPBIT gmapbit_
#endif

int MAKEMAP(char * , int * , int * , char ** , int );
void SHOWMAP(char ** , int * , int * );
int GMAPBIT( char ** , int * , int * , int * );
int findNumber(char * , int , int , int * , char );
char findDelimiter(char * , int , int );
int findCharacter(char * , int , int , char );
void setBit(char * , int , int , int , int );
void copyRow(char * , int , int , int , int );

#endif          /* End of BITMAP_H */