File: r3_persistent.h

package info (click to toggle)
libr3 1.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 1,084 kB
  • ctags: 1,086
  • sloc: ansic: 13,117; cpp: 175; makefile: 112; sh: 64; ruby: 52
file content (10 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#ifndef R3_PERSISTENT_H
#define R3_PERSISTENT_H 1

extern inline int persistent_store(char *key, int key_len, int list_type, void * val TSRMLS_DC);
extern inline int r3_persistent_store(char *ns, char *key, int list_type, void * val TSRMLS_DC) ;

extern inline void * persistent_fetch(char *key, int key_len TSRMLS_DC);
extern inline void * r3_persistent_fetch(char *ns, char *key TSRMLS_DC);

#endif