]> git.saurik.com Git - redis.git/commit - src/Makefile
Bit-related string operations moved to bitop.c
authorantirez <antirez@gmail.com>
Sat, 19 May 2012 08:33:20 +0000 (10:33 +0200)
committerantirez <antirez@gmail.com>
Thu, 24 May 2012 13:19:51 +0000 (15:19 +0200)
commit760e7765263ff4b6d5176830c9e8e8d733744996
treeb18b958bcc999a48e44198353f16eb3e029a7506
parenta3f2b4895b979bde1e99d6313d396b62c325ab72
Bit-related string operations moved to bitop.c

All the general string operations are implemented in t_string.c, however
the bit operations, while targeting the string type, are better served
in a specific file where we have the implementations of the following
four commands and helper functions:

    GETBIT
    SETBIT
    BITOP
    BITCOUNT

In the future this file will probably contain more code related to
making the BITOP and BITCOUNT operations faster.
src/Makefile
src/bitop.c [new file with mode: 0644]
src/t_string.c