blob: a3261a41ae5efa92ca1d8f5f23d2c03becf8430a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
include "fitsio.h"
procedure fscmps(templ,strng,casesn,match,exact)
char templ[SZ_FTTYPE] # i column name template
% character ftemp*24
char strng[SZ_FTTYPE] # i column name
% character fstrng*24
bool casesn # i require same case?
bool match # o do the strings match?
bool exact # o is it an exact match?
begin
call f77pak(templ,ftemp,SZ_FTTYPE)
call f77pak(strng,fstrng,SZ_FTTYPE)
call ftcmps(ftemp,fstrng,casesn,match,exact)
end
|