~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to incl/proto_ctab.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)proto_ctab.h     19.1 (ESO-IPG) 02/25/03 13:49:39 */
 
2
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
3
.COPYRIGHT   (c) 1993 European Southern Observatory
 
4
.IDENTifer   proto_ctab.h
 
5
.AUTHOR      C. Guirao
 
6
.KEYWORDS    prototypes
 
7
.LANGUAGE    C & ANSI-C
 
8
.PURPOSE     prototypes for all prim/table/libsrc functions
 
9
 
 
10
.ENVIRONment none
 
11
 
 
12
.VERSION     1.0     24-Nov-1998   Creation 
 
13
------------------------------------------------------------*/
 
14
 
 
15
#ifndef  PROTO_CTAB              /* Avoid redefinitions */
 
16
#define  PROTO_CTAB      0
 
17
 
 
18
/*
 
19
 * module tbcomsel.c
 
20
 */
 
21
 
 
22
#ifdef  __cplusplus
 
23
extern "C" char*  tbl_select_ima(
 
24
const char *intable,
 
25
const char *criteria,
 
26
int myrefrow
 
27
);
 
28
#else
 
29
 
 
30
extern char*  tbl_select_ima(
 
31
#ifdef __STDC__
 
32
char *intable,
 
33
char *criteria,
 
34
int myrefrow
 
35
#endif
 
36
);
 
37
#endif
 
38
 
 
39
#endif