diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-20 14:08:04 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-20 16:03:43 +0100 |
commit | f62a96be23d7f24fd8d788aa857fc0206c36a6a5 (patch) | |
tree | ab818aaac087251c072c66e5b46c300cb8a9a941 /src/yasl.h | |
parent | ef10accb453946b27ea89a3bc53a31b1a0f562bf (diff) | |
download | sds-f62a96be23d7f24fd8d788aa857fc0206c36a6a5.tar.xz |
Update all comments to refer to yasl
Diffstat (limited to 'src/yasl.h')
-rw-r--r-- | src/yasl.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* SDS (Simple Dynamic Strings), A C dynamic strings library. +/* yasl, Yet Another String Library for C * * Copyright (c) 2006-2014, Salvatore Sanfilippo <antirez at gmail dot com> * All rights reserved. @@ -25,10 +25,10 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef SDS_H -#define SDS_H +#ifndef YASL_H +#define YASL_H -#define SDS_MAX_PREALLOC (1024*1024) +#define YASL_MAX_PREALLOC (1024*1024) #include <stdarg.h> #include <stddef.h> |