mirror of
https://github.com/fluencelabs/redis
synced 2025-04-27 03:22:14 +00:00
13 lines
265 B
C
13 lines
265 B
C
|
#ifndef __GEO_H__
|
||
|
#define __GEO_H__
|
||
|
|
||
|
#include "redis.h"
|
||
|
|
||
|
void geoEncodeCommand(redisClient *c);
|
||
|
void geoDecodeCommand(redisClient *c);
|
||
|
void geoRadiusByMemberCommand(redisClient *c);
|
||
|
void geoRadiusCommand(redisClient *c);
|
||
|
void geoAddCommand(redisClient *c);
|
||
|
|
||
|
#endif
|