repo.or.cz
/
vlc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
meta_engine: support id3v2.4 tag for id3 chapter markers
[vlc.git]
/
doc
/
doc_helper.sh
blob
4527b49ae71e83bfbb2db1ed83693ff3bfa7ad8b
1
#! /bin/sh
2
3
# Add <vlc_common.h> before most headers
4
# from old toolbox
5
6
# Clean env
7
LC_ALL
=
C
8
export
LC_ALL
9
LANG
=
C
10
export
LANG
11
12
if
test
"
$1
"
=
""
;
then
13
exit
0
14
fi
15
16
## Add includes to help doxygen
17
case
"
$1
"
in
18
*/
vlc_common.h|
*/
include
/
vlc
/*);;
19
*/
include
/*
.h
)
echo
"#include <vlc_common.h>"
;;
20
esac
21
cat
$1
22
exit
0
23