]> git.saurik.com Git - redis.git/blob - src/release.c
Scripting: add helper functions redis.error_reply() and redis.status_reply().
[redis.git] / src / release.c
1 /* Every time the Redis Git SHA1 or Dirty status changes only this file
2 * small file is recompiled, as we access this information in all the other
3 * files using this functions. */
4
5 #include "release.h"
6
7 char *redisGitSHA1(void) {
8 return REDIS_GIT_SHA1;
9 }
10
11 char *redisGitDirty(void) {
12 return REDIS_GIT_DIRTY;
13 }