| 1 | /* Copyright (c) 2002,2003,2004,2009 James M. Kretchmar |
|---|
| 2 | * |
|---|
| 3 | * This file is part of Owl. |
|---|
| 4 | * |
|---|
| 5 | * Owl is free software: you can redistribute it and/or modify |
|---|
| 6 | * it under the terms of the GNU General Public License as published by |
|---|
| 7 | * the Free Software Foundation, either version 3 of the License, or |
|---|
| 8 | * (at your option) any later version. |
|---|
| 9 | * |
|---|
| 10 | * Owl is distributed in the hope that it will be useful, |
|---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 13 | * GNU General Public License for more details. |
|---|
| 14 | * |
|---|
| 15 | * You should have received a copy of the GNU General Public License |
|---|
| 16 | * along with Owl. If not, see <http://www.gnu.org/licenses/>. |
|---|
| 17 | * |
|---|
| 18 | * --------------------------------------------------------------- |
|---|
| 19 | * |
|---|
| 20 | * As of Owl version 2.1.12 there are patches contributed by |
|---|
| 21 | * developers of the branched BarnOwl project, Copyright (c) |
|---|
| 22 | * 2006-2009 The BarnOwl Developers. All rights reserved. |
|---|
| 23 | */ |
|---|
| 24 | |
|---|
| 25 | #include "owl.h" |
|---|
| 26 | |
|---|
| 27 | void owl_pair_create(owl_pair *p, void *key, void *value) { |
|---|
| 28 | p->key=key; |
|---|
| 29 | p->value=value; |
|---|
| 30 | } |
|---|
| 31 | |
|---|
| 32 | void owl_pair_set_key(owl_pair *p, void *key) { |
|---|
| 33 | p->key=key; |
|---|
| 34 | } |
|---|
| 35 | |
|---|
| 36 | void owl_pair_set_value(owl_pair *p, void *value) { |
|---|
| 37 | p->value=value; |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | void *owl_pair_get_key(owl_pair *p) { |
|---|
| 41 | return(p->key); |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | void *owl_pair_get_value(owl_pair *p) { |
|---|
| 45 | return(p->value); |
|---|
| 46 | } |
|---|