18 Jul
2025
18 Jul
'25
8:45 p.m.
On Fri, 20 Jun 2025 11:36:41 +0200
Laurent Vivier
We always use imperative (no 'Returns:'), no tab after the ':' and only one space, the first character is always lowercase.
This is fixed with:
sed -i "s/Returns:/Return:/;s/Return: /Return: /;s/Return: */Return: /;s/Return: \([A-Z]\)/Return: \L\1/" *.[ch]
And manually updated to fix alignment of multiline comment and words that must keep uppercase (like IPv4, TCP, UDP, Layer-4).
Signed-off-by: Laurent Vivier
Applied. -- Stefano