From: Wouter Wijngaards Date: Fri, 7 Jul 2006 10:02:50 +0000 (+0000) Subject: Removed ldns_str_remove_comment from parse.h. It is not implemented. X-Git-Tag: release-1.1.0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f86f8d32d2d227c4fdd6c9f2fe51e2ee3c8632ea;p=thirdparty%2Fldns.git Removed ldns_str_remove_comment from parse.h. It is not implemented. --- diff --git a/ldns/parse.h b/ldns/parse.h index 4332858e..63057635 100644 --- a/ldns/parse.h +++ b/ldns/parse.h @@ -118,15 +118,6 @@ ssize_t ldns_fget_keyword_data_l(FILE *f, const char *keyword, const char *k_del */ ssize_t ldns_bget_keyword_data(ldns_buffer *b, const char *keyword, const char *k_del, char *data, const char *d_del, size_t data_limit); -/** - * removes comments from a string. A comment = ';'. - * Goes on with this until a newline (\n) is reached. - * The comments are replaces with spaces. - * \param[in] str the string to remove the comments from. String must be writeable - * \return the new string - */ -char *ldns_str_remove_comment(char *str); - /** * returns the next character from a buffer. Advances the position pointer with 1. * When end of buffer is reached returns EOF. This is the buffer's equivalent