Update code style
Limit source code to 80 chars, and declare functions return type and modifiers on a separate line. This allows to avoid very long lines, and all function names are aligned. (We do this on VLC, and I like it.)
This commit is contained in:
@@ -26,10 +26,17 @@ struct stream {
|
||||
} receiver_state;
|
||||
};
|
||||
|
||||
void stream_init(struct stream *stream, socket_t socket,
|
||||
struct decoder *decoder, struct recorder *recorder);
|
||||
SDL_bool stream_start(struct stream *stream);
|
||||
void stream_stop(struct stream *stream);
|
||||
void stream_join(struct stream *stream);
|
||||
void
|
||||
stream_init(struct stream *stream, socket_t socket,
|
||||
struct decoder *decoder, struct recorder *recorder);
|
||||
|
||||
SDL_bool
|
||||
stream_start(struct stream *stream);
|
||||
|
||||
void
|
||||
stream_stop(struct stream *stream);
|
||||
|
||||
void
|
||||
stream_join(struct stream *stream);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user