mirror of
https://github.com/fluencelabs/redis
synced 2025-03-19 17:10:50 +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
|