From 57dc7b07c9315ead4c106405c2e0968d8bbe2950 Mon Sep 17 00:00:00 2001 From: Heng Li Date: Wed, 24 Jul 2013 11:19:38 -0400 Subject: [PATCH] removed incorrect comments --- kstring.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/kstring.h b/kstring.h index 8671ba6..0e654cb 100644 --- a/kstring.h +++ b/kstring.h @@ -87,9 +87,6 @@ extern "C" { } #endif -/* Ensures that the string has space for at least SIZE bytes, and ensures that - * it is NUL-terminated if there is room. Thus ks_resize(&s,s.l+1) can be used - * to make sure that a kstring_t is both allocated and NUL-terminated. */ static inline int ks_resize(kstring_t *s, size_t size) { if (s->m < size) { -- 2.47.3