Re: Kernel API Reference Documentation

From: Martin Waitz
Date: Wed Jun 28 2006 - 08:04:09 EST


hoi :)

when I once experimented with doxygen, I used the following script to
convert some kerneldoc comments to doxygen syntax:

#!/usr/bin/perl -wpi

use strict;

BEGIN { $::state = 0; }

if ($::state == 0) {
$::state = 1 if /\/\*\*/;
} elsif ($::state == 1) {
s/(\*\s+)(struct\s+|enum\s+)?\S+ - /$1/;
s/$/\./ unless /\.$/;
$::state = 2;
} elsif ($::state == 2) {
s/(\*\s+)\@(\w+):\s+(.*)/$1\\param $2 $3./;
s/(\s+)[%&\@](\S+)/$1$2/g;
}
s/\.\.$/./;

$::state = 0 if /\*\//;


--
Martin Waitz

Attachment: signature.asc
Description: Digital signature