source: trunk/src/objects/RpChainHelper.h @ 1386

Last change on this file since 1386 was 1386, checked in by dkearney, 15 years ago

adding a few object prototypes we can play with for future developement. the plot object is probably the most interesting. examples are located in examples/objects dirs

File size: 584 bytes
Line 
1#ifndef _RP_CHAIN_HELPER_H
2#define _RP_CHAIN_HELPER_H 1
3
4#include "RpInt.h"
5#include "RpChain.h"
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11
12// int chain2hash(Rp_Chain *c, Rp_HashTable *h);
13
14Rp_Chain * Rp_ChainJoin     ( Rp_Chain *c1,
15                              Rp_Chain *c2);
16
17Rp_Chain * Rp_ChainConcat   ( Rp_Chain *c1,
18                              Rp_Chain *c2);
19
20int Rp_ChainCopy            ( Rp_Chain *c1,
21                              Rp_Chain *c2,
22                              int (*cpyFxn)(void **to,void *from));
23
24#ifdef __cplusplus
25}
26#endif
27
28#endif // _RP_CHAIN_HELPER_H
Note: See TracBrowser for help on using the repository browser.