summaryrefslogtreecommitdiff
path: root/sexp.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2003-02-11 09:45:53 +0100
committerNiels Möller <nisse@lysator.liu.se>2003-02-11 09:45:53 +0100
commit3fe078075a3af5309932c09f67f55716d702b6e5 (patch)
tree4f11b4da81790ccae5fd4606d3edbc0c175f6a35 /sexp.h
parent27889a95d9c49a8121ebc896efc650db86402444 (diff)
downloadnettle-3fe078075a3af5309932c09f67f55716d702b6e5.tar.gz
(sexp_vformat): Handle %( and %).
Rev: src/nettle/sexp-format.c:1.8 Rev: src/nettle/sexp.h:1.14
Diffstat (limited to 'sexp.h')
-rw-r--r--sexp.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/sexp.h b/sexp.h
index 21252796..2b72a2be 100644
--- a/sexp.h
+++ b/sexp.h
@@ -153,14 +153,15 @@ struct nettle_buffer;
* subexpression. Represented as unsigned length, const uint8_t
* *data.
*
+ * %(, %) Allows insertion of unbalanced parenthesis.
+ *
* Modifiers:
*
* %0 For %s, %t and %l, says that there's no length argument,
* instead the string is NUL-terminated, and there's only one
* const uint8_t * argument.
- *
- * FIXME: Allow "%(" for unbalanced parenthesis. */
-
+ */
+
unsigned
sexp_format(struct nettle_buffer *buffer,
const char *format, ...);