mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
Inline sdslen and sdsavail (thanks to @bitbckt)
This commit is contained in:
parent
9703b1b3dc
commit
ded614f803
12
src/sds.c
12
src/sds.c
@ -36,11 +36,11 @@
|
|||||||
|
|
||||||
#define SDS_ABORT_ON_OOM
|
#define SDS_ABORT_ON_OOM
|
||||||
|
|
||||||
#include "sds.h"
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include "sds.h"
|
||||||
#include "zmalloc.h"
|
#include "zmalloc.h"
|
||||||
|
|
||||||
static void sdsOomAbort(void) {
|
static void sdsOomAbort(void) {
|
||||||
@ -78,11 +78,6 @@ sds sdsnew(const char *init) {
|
|||||||
return sdsnewlen(init, initlen);
|
return sdsnewlen(init, initlen);
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t sdslen(const sds s) {
|
|
||||||
struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr)));
|
|
||||||
return sh->len;
|
|
||||||
}
|
|
||||||
|
|
||||||
sds sdsdup(const sds s) {
|
sds sdsdup(const sds s) {
|
||||||
return sdsnewlen(s, sdslen(s));
|
return sdsnewlen(s, sdslen(s));
|
||||||
}
|
}
|
||||||
@ -92,11 +87,6 @@ void sdsfree(sds s) {
|
|||||||
zfree(s-sizeof(struct sdshdr));
|
zfree(s-sizeof(struct sdshdr));
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t sdsavail(sds s) {
|
|
||||||
struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr)));
|
|
||||||
return sh->free;
|
|
||||||
}
|
|
||||||
|
|
||||||
void sdsupdatelen(sds s) {
|
void sdsupdatelen(sds s) {
|
||||||
struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr)));
|
struct sdshdr *sh = (void*) (s-(sizeof(struct sdshdr)));
|
||||||
int reallen = strlen(s);
|
int reallen = strlen(s);
|
||||||
|
10
src/sds.h
10
src/sds.h
@ -42,6 +42,16 @@ struct sdshdr {
|
|||||||
char buf[];
|
char buf[];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static inline size_t sdslen(const sds s) {
|
||||||
|
struct sdshdr *sh = (void*)(s-(sizeof(struct sdshdr)));
|
||||||
|
return sh->len;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline size_t sdsavail(const sds s) {
|
||||||
|
struct sdshdr *sh = (void*)(s-(sizeof(struct sdshdr)));
|
||||||
|
return sh->free;
|
||||||
|
}
|
||||||
|
|
||||||
sds sdsnewlen(const void *init, size_t initlen);
|
sds sdsnewlen(const void *init, size_t initlen);
|
||||||
sds sdsnew(const char *init);
|
sds sdsnew(const char *init);
|
||||||
sds sdsempty();
|
sds sdsempty();
|
||||||
|
Loading…
Reference in New Issue
Block a user