File: memcached.h

package info (click to toggle)
hashrat 1.25%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,892 kB
  • sloc: ansic: 32,338; sh: 400; makefile: 337
file content (11 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#ifndef HASHRAT_MEMCACHED_H
#define HASHRAT_MEMCACHED_H

#include "common.h"

STREAM *MemcachedConnect(const char *Server);
int MemcachedSet(const char *Key, int TTL, const char *Value);
char *MemcachedGet(char *RetStr, const char *Key);

#endif