forked from mischasan/hx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hx_badb.c
42 lines (39 loc) · 1.47 KB
/
hx_badb.c
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
// Copyright (C) 2001-2013 Mischa Sandberg <[email protected]>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License Version 2 as
// published by the Free Software Foundation. You may not use, modify or
// distribute this program under any other version of the GNU General
// Public License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// IF YOU HAVE NO WAY OF WORKING WITH GPL, CONTACT ME.
//-------------------------------------------------------------------------------
// hx_badb: hx 'rectype' implementation without diff or hash !
#include "hx_.h"
int
load(char *recp __unused, int recsize __unused, char const *buf __unused,
char const *udata __unused, int uleng __unused)
{
return 0;
}
int
save(char const *recp __unused, int reclen __unused, char *buf __unused,
int bufsize __unused, char const *udata __unused, int uleng __unused)
{
return 0;
}
int
test(char const *recp __unused, int reclen __unused,
char const *udata __unused, int uleng __unused)
{
return 0;
}