On 17/07/06, Kyle Hamilton <[EMAIL PROTECTED]> wrote:
> http://www.docbook.org/tdg/en/html/funcparams.html
There's an example for qsort in there, but there's a problem: it loses
information between the XML and the output. Specifically, what's
printed is:
void qsort( dataptr,
dataptr,
left,
right,
(* comp));
dataptr;
left;
right;
int (* comp) (void *, void *);
i.e., it loses type information for dataptr, left, and right.
> Is that any help?
I just ran that through my rev of the stylesheets and produced
void qsort( dataptr,
left,
right,
comp);
void * dataptr[];
int left;
int right;
int (*comp) (void *, void *);
1. I think your version of docbook may be out of date.
2. The example in 'the definitive guide' seems wrong.
3. You get what you want (from what I see? Is that right)
HTH
--
Dave Pawson
XSLT XSL-FO FAQ.
http://www.dpawson.co.uk
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [email protected]
Automated List Manager [EMAIL PROTECTED]