~ubuntu-branches/ubuntu/vivid/psicode/vivid

« back to all changes in this revision

Viewing changes to src/lib/libipv1/ip_data.gbl

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck, Michael Banck, Daniel Leidert
  • Date: 2009-02-23 00:12:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090223001202-rutldoy3dimfpesc
Tags: 3.4.0-1
* New upstream release.

[ Michael Banck ]
* debian/patches/01_DESTDIR.dpatch: Refreshed.
* debian/patches/02_FHS.dpatch: Removed, applied upstream.
* debian/patches/03_debian_docdir: Likewise.
* debian/patches/04_man.dpatch: Likewise.
* debian/patches/06_466828_fix_gcc_43_ftbfs.dpatch: Likewise.
* debian/patches/07_464867_move_executables: Fixed and refreshed.
* debian/patches/00list: Adjusted.
* debian/control: Improved description.
* debian/patches-held: Removed.
* debian/rules (install/psi3): Do not ship the ruby bindings for now.

[ Daniel Leidert ]
* debian/rules: Fix txtdir via DEB_MAKE_INSTALL_TARGET.
* debian/patches/01_DESTDIR.dpatch: Refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _psi_src_lib_libipv1_ipdata_gbl_
 
2
#define _psi_src_lib_libipv1_ipdata_gbl_
 
3
 
1
4
#ifdef __cplusplus
2
5
extern "C" {
3
6
#endif
4
7
 
5
 
int ip_count(char *keyword, int *count, int n, ...);
6
 
int ip_count_v(char *keyword, int *count, int n, int *v);
7
 
int ip_boolean(char *keyword, int *boolean, int n, ...);
8
 
int ip_boolean_v(char *keyword, int *boolean, int n, int *v);
9
 
int ip_exist(char *keyword, int n, ...);
10
 
int ip_exist_v(char *keyword, int n, int *v);
11
 
int ip_data(char *keyword, char *conv, void *value, int n, ...);
12
 
int ip_data_v(char *keyword, char *conv, void *value, int n, int *v);
13
 
int ip_string(char *keyword, char **value, int n, ...);
14
 
int ip_string_v(char *keyword, char **value, int n, int *v);
15
 
int ip_value(char *keyword, ip_value_t **value, int n, ...);
16
 
int ip_value_v(char *keyword, ip_value_t **value, int n, int *v);
17
 
int ip_int_array(char *keyword, int *arr, int len);
18
 
int ip_double_array(char *keyword, double *arr, int len);
 
8
int ip_count(const char *keyword, int *count, int n, ...);
 
9
int ip_count_v(const char *keyword, int *count, int n, int *v);
 
10
int ip_boolean(const char *keyword, int *boolean, int n, ...);
 
11
int ip_boolean_v(const char *keyword, int *boolean, int n, int *v);
 
12
int ip_exist(const char *keyword, int n, ...);
 
13
int ip_exist_v(const char *keyword, int n, int *v);
 
14
int ip_data(const char *keyword, const char *conv, void *value, int n, ...);
 
15
int ip_data_v(const char *keyword, const char *conv, void *value, int n, int *v);
 
16
int ip_string(const char *keyword, char **value, int n, ...);
 
17
int ip_string_v(const char *keyword, char **value, int n, int *v);
 
18
int ip_value(const char *keyword, ip_value_t **value, int n, ...);
 
19
int ip_value_v(const char *keyword, ip_value_t **value, int n, int *v);
 
20
int ip_int_array(const char *keyword, int *arr, int len);
 
21
int ip_double_array(const char *keyword, double *arr, int len);
19
22
 
20
23
#ifdef __cplusplus
21
24
}
22
25
#endif
 
26
 
 
27
#endif /* header guard */