1177633Sdfr/* Licensed to the Apache Software Foundation (ASF) under one or more
2177633Sdfr * contributor license agreements.  See the NOTICE file distributed with
3177633Sdfr * this work for additional information regarding copyright ownership.
4177633Sdfr * The ASF licenses this file to You under the Apache License, Version 2.0
5177633Sdfr * (the "License"); you may not use this file except in compliance with
6177633Sdfr * the License.  You may obtain a copy of the License at
7177633Sdfr *
8177633Sdfr *     http://www.apache.org/licenses/LICENSE-2.0
9177633Sdfr *
10177633Sdfr * Unless required by applicable law or agreed to in writing, software
11177633Sdfr * distributed under the License is distributed on an "AS IS" BASIS,
12177633Sdfr * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13177633Sdfr * See the License for the specific language governing permissions and
14177633Sdfr * limitations under the License.
15177633Sdfr */
16177633Sdfr
17177633Sdfr#ifndef SDBM_PAIR_H
18177633Sdfr#define SDBM_PAIR_H
19177633Sdfr
20177633Sdfr/* Mini EMBED (pair.c) */
21177633Sdfr#define chkpage apu__sdbm_chkpage
22177633Sdfr#define delpair apu__sdbm_delpair
23177633Sdfr#define duppair apu__sdbm_duppair
24177633Sdfr#define fitpair apu__sdbm_fitpair
25177633Sdfr#define getnkey apu__sdbm_getnkey
26177633Sdfr#define getpair apu__sdbm_getpair
27177633Sdfr#define putpair apu__sdbm_putpair
28177633Sdfr#define splpage apu__sdbm_splpage
29177633Sdfr
30177633Sdfrint fitpair(char *, int);
31177633Sdfrvoid  putpair(char *, apr_sdbm_datum_t, apr_sdbm_datum_t);
32177633Sdfrapr_sdbm_datum_t getpair(char *, apr_sdbm_datum_t);
33177633Sdfrint  delpair(char *, apr_sdbm_datum_t);
34177633Sdfrint  chkpage (char *);
35177633Sdfrapr_sdbm_datum_t getnkey(char *, int);
36177633Sdfrvoid splpage(char *, char *, long);
37177633Sdfrint duppair(char *, apr_sdbm_datum_t);
38177633Sdfr
39177633Sdfr#endif /* SDBM_PAIR_H */
40177633Sdfr
41177633Sdfr