File: fileformat.c

package info (click to toggle)
garlic 1.6-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 4,440 kB
  • ctags: 1,403
  • sloc: ansic: 52,465; makefile: 1,134
file content (48 lines) | stat: -rw-r--r-- 1,027 bytes parent folder | download | duplicates (6)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* Copyright (C) 2000 Damir Zucic */

/*=============================================================================

				fileformat.c

Purpose:
	Try to recognize input file format.

Input:
	(1) File name.

Output:
	(1) Return value.

Return value:
	(1) File format identifier on success (see defines.h for values).
	(3) Negative on failure.

========includes:============================================================*/

#include <stdio.h>

#include "defines.h"

/*======function prototypes:=================================================*/

void		ErrorMessage_ (char *, char *, char *,
			       char *, char *, char *, char *);
int		IsPDB_ (char *);

/*======recognize file format:===============================================*/

int RecogFileFormat_ (char *file_nameP)
{
int		n;

/* Check is it PDB file: */
n = IsPDB_ (file_nameP);
if (n >= 0) return n;

/* If this point is reached, file format recognition failed: */
return -1;
}

/*===========================================================================*/