1251876Speter/* Licensed to the Apache Software Foundation (ASF) under one or more
2251876Speter * contributor license agreements.  See the NOTICE file distributed with
3251876Speter * this work for additional information regarding copyright ownership.
4251876Speter * The ASF licenses this file to You under the Apache License, Version 2.0
5251876Speter * (the "License"); you may not use this file except in compliance with
6251876Speter * the License.  You may obtain a copy of the License at
7251876Speter *
8251876Speter *     http://www.apache.org/licenses/LICENSE-2.0
9251876Speter *
10251876Speter * Unless required by applicable law or agreed to in writing, software
11251876Speter * distributed under the License is distributed on an "AS IS" BASIS,
12251876Speter * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13251876Speter * See the License for the specific language governing permissions and
14251876Speter * limitations under the License.
15251876Speter */
16251876Speter
17251876Speter#ifndef SDBM_PAIR_H
18251876Speter#define SDBM_PAIR_H
19251876Speter
20251876Speter/* Mini EMBED (pair.c) */
21251876Speter#define chkpage apu__sdbm_chkpage
22251876Speter#define delpair apu__sdbm_delpair
23251876Speter#define duppair apu__sdbm_duppair
24251876Speter#define fitpair apu__sdbm_fitpair
25251876Speter#define getnkey apu__sdbm_getnkey
26251876Speter#define getpair apu__sdbm_getpair
27251876Speter#define putpair apu__sdbm_putpair
28251876Speter#define splpage apu__sdbm_splpage
29251876Speter
30251876Speterint fitpair(char *, int);
31251876Spetervoid  putpair(char *, apr_sdbm_datum_t, apr_sdbm_datum_t);
32251876Speterapr_sdbm_datum_t getpair(char *, apr_sdbm_datum_t);
33251876Speterint  delpair(char *, apr_sdbm_datum_t);
34251876Speterint  chkpage (char *);
35251876Speterapr_sdbm_datum_t getnkey(char *, int);
36251876Spetervoid splpage(char *, char *, long);
37251876Speterint duppair(char *, apr_sdbm_datum_t);
38251876Speter
39251876Speter#endif /* SDBM_PAIR_H */
40251876Speter
41