Commited patch, thank you!

PR:		45235
Submitted by:	Dean Hollister <dean@odyssey.apana.org.au>
This commit is contained in:
Edwin Groothuis
2002-11-15 22:52:30 +00:00
parent cdbd4b39db
commit 97b9561099
3 changed files with 21 additions and 13 deletions

View File

@@ -6,7 +6,7 @@
#
PORTNAME= firestring
PORTVERSION= 0.1.22
PORTVERSION= 0.1.23
CATEGORIES= misc net devel
MASTER_SITES= http://ares.penguinhosting.net/~ian/projects/ \
http://www.wa.apana.org.au/~dean/sources/ \
@@ -19,10 +19,11 @@ MAINTAINER= dean@odyssey.apana.org.au
HAS_CONFIGURE= yes
INSTALLS_SHLIB= yes
MAN3= firestring_chomp.3 firestring_chug.3 firestring_concat.3 \
firestring_conf_add.3 firestring_conf_find.3 \
firestring_conf_find_next.3 firestring_conf_free.3 \
firestring_conf_parse.3 firestring_estr_0.3 \
MAN3= firestring_chomp.3 firestring_chug.3 \
firestring_concat.3 firestring_conf_add.3 \
firestring_conf_find.3 firestring_conf_find_next.3 \
firestring_conf_free.3 firestring_conf_parse.3 \
firestring_conf_parse_next.3 firestring_estr_0.3 \
firestring_estr_alloc.3 firestring_estr_base64_decode.3 \
firestring_estr_base64_encode.3 firestring_estr_ends.3 \
firestring_estr_estrcasecmp.3 firestring_estr_estrcat.3 \

View File

@@ -1 +1 @@
MD5 (firestring-0.1.22.tar.gz) = c9e65fa76d1fffcd01d8052ba4231616
MD5 (firestring-0.1.23.tar.gz) = f5d1b6fedbbd4137483efb3864d772b6

View File

@@ -1,14 +1,21 @@
From libfirestring(3):
"libfirestring is a string handling library that provides
maximum length aware string handling functions to programs.
Several functions provide saner interfaces than the standard
libc functions. libfirestring also provides functions that
are in most libc's but not provided for by POSIX, enabling
programmers to write POSIX-compliant code while using such
safe functions (strcasecmp, strncasecmp, snprintf)."
maximum length aware string handling functions to pro-
grams. Several functions provide saner interfaces than
the standard libc functions. libfirestring also provides
functions that are in most libc's but not provided for by
ANSI C, enabling programmers to write ANSI C-compliant
code while using such safe functions (strcasecmp, strn-
casecmp, snprintf).
"libfirestring also includes functions for dealing with
libfirestring provides a set of functions for dealing with
EStrings. EStrings are binary-safe objects that, when
used with the firestring functions, are overflow safe,
because they include allocated memory size information
with them.
libfirestring also includes functions for dealing with
reading configuration files in an easy to program fashion."
WWW: http://ares.penguinhosting.net/~ian/