Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
4f9272f7
Commit
4f9272f7
authored
Jan 11, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless <ctype.h> inclusions
parent
a52793e9
Changes
19
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
1 addition
and
24 deletions
+1
-24
modules/access/alsa.c
modules/access/alsa.c
+0
-1
modules/access/oss.c
modules/access/oss.c
+0
-1
modules/control/globalhotkeys/xcb.c
modules/control/globalhotkeys/xcb.c
+0
-1
modules/control/http/http.h
modules/control/http/http.h
+0
-1
modules/control/http/mvar.c
modules/control/http/mvar.c
+1
-0
modules/control/rc.c
modules/control/rc.c
+0
-1
modules/demux/playlist/ram.c
modules/demux/playlist/ram.c
+0
-2
modules/demux/subtitle_asa.c
modules/demux/subtitle_asa.c
+0
-1
modules/demux/ts.c
modules/demux/ts.c
+0
-1
modules/gui/skins2/src/theme_loader.cpp
modules/gui/skins2/src/theme_loader.cpp
+0
-2
modules/services_discovery/sap.c
modules/services_discovery/sap.c
+0
-2
src/control/mediacontrol_audio_video.c
src/control/mediacontrol_audio_video.c
+0
-1
src/control/mediacontrol_core.c
src/control/mediacontrol_core.c
+0
-1
src/control/mediacontrol_util.c
src/control/mediacontrol_util.c
+0
-1
src/extras/libc.c
src/extras/libc.c
+0
-3
src/input/input.c
src/input/input.c
+0
-1
src/misc/epg.c
src/misc/epg.c
+0
-2
src/misc/image.c
src/misc/image.c
+0
-1
src/stream_output/sap.c
src/stream_output/sap.c
+0
-1
No files found.
modules/access/alsa.c
View file @
4f9272f7
...
...
@@ -45,7 +45,6 @@
#include <vlc_demux.h>
#include <vlc_input.h>
#include <ctype.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/ioctl.h>
...
...
modules/access/oss.c
View file @
4f9272f7
...
...
@@ -38,7 +38,6 @@
#include <vlc_demux.h>
#include <vlc_charset.h>
#include <ctype.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/ioctl.h>
...
...
modules/control/globalhotkeys/xcb.c
View file @
4f9272f7
...
...
@@ -27,7 +27,6 @@
#include <vlc_plugin.h>
#include <vlc_interface.h>
#include <vlc_keys.h>
#include <ctype.h>
#include <errno.h>
#include <xcb/xcb.h>
...
...
modules/control/http/http.h
View file @
4f9272f7
...
...
@@ -32,7 +32,6 @@
#include <vlc_common.h>
#include <stdlib.h>
#include <strings.h>
#include <ctype.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
...
...
modules/control/http/mvar.c
View file @
4f9272f7
...
...
@@ -29,6 +29,7 @@
#include "http.h"
#include <limits.h>
#include <errno.h>
#include <ctype.h>
/* Utility function for scandir */
static
int
Filter
(
const
char
*
foo
)
...
...
modules/control/rc.c
View file @
4f9272f7
...
...
@@ -34,7 +34,6 @@
#include <vlc_plugin.h>
#include <errno.h>
/* ENOMEM */
#include <ctype.h>
#include <signal.h>
#include <assert.h>
...
...
modules/demux/playlist/ram.c
View file @
4f9272f7
...
...
@@ -51,8 +51,6 @@ http://service.real.com/help/library/guides/realone/IntroGuide/HTML/htmfiles/ram
#include <vlc_demux.h>
#include <vlc_url.h>
#include <ctype.h>
#include "playlist.h"
struct
demux_sys_t
...
...
modules/demux/subtitle_asa.c
View file @
4f9272f7
...
...
@@ -38,7 +38,6 @@
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <ctype.h>
#include <vlc_demux.h>
#include <vlc_charset.h>
...
...
modules/demux/ts.c
View file @
4f9272f7
...
...
@@ -33,7 +33,6 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <ctype.h>
#include <assert.h>
#include <vlc_access.h>
/* DVB-specific things */
...
...
modules/gui/skins2/src/theme_loader.cpp
View file @
4f9272f7
...
...
@@ -30,8 +30,6 @@
#include "../src/vlcproc.hpp"
#include "../src/window_manager.hpp"
#include <cctype>
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
...
...
modules/services_discovery/sap.c
View file @
4f9272f7
...
...
@@ -40,8 +40,6 @@
#include <vlc_network.h>
#include <vlc_charset.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
...
...
src/control/mediacontrol_audio_video.c
View file @
4f9272f7
...
...
@@ -40,7 +40,6 @@
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
...
...
src/control/mediacontrol_core.c
View file @
4f9272f7
...
...
@@ -42,7 +42,6 @@
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
...
...
src/control/mediacontrol_util.c
View file @
4f9272f7
...
...
@@ -36,7 +36,6 @@
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
...
...
src/extras/libc.c
View file @
4f9272f7
...
...
@@ -31,9 +31,6 @@
#include <vlc_common.h>
#include <ctype.h>
#undef iconv_t
#undef iconv_open
#undef iconv
...
...
src/input/input.c
View file @
4f9272f7
...
...
@@ -31,7 +31,6 @@
#include <vlc_common.h>
#include <ctype.h>
#include <limits.h>
#include <assert.h>
#include <errno.h>
...
...
src/misc/epg.c
View file @
4f9272f7
...
...
@@ -29,8 +29,6 @@
# include "config.h"
#endif
#include <ctype.h>
#include <vlc_common.h>
#include <vlc_epg.h>
...
...
src/misc/image.c
View file @
4f9272f7
...
...
@@ -34,7 +34,6 @@
# include "config.h"
#endif
#include <ctype.h>
#include <errno.h>
#include <vlc_common.h>
...
...
src/stream_output/sap.c
View file @
4f9272f7
...
...
@@ -35,7 +35,6 @@
#include <stdlib.h>
/* free() */
#include <stdio.h>
/* sprintf() */
#include <string.h>
#include <ctype.h>
/* tolower(), isxdigit() */
#include <assert.h>
#include <vlc_sout.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment