summaryrefslogtreecommitdiffstats
path: root/libass/ass_library.h
diff options
context:
space:
mode:
authorgreg <greg@blackbox>2009-06-18 17:54:08 +0200
committergreg <greg@blackbox>2009-06-20 03:38:00 +0200
commit2303b5430337da60f582613f95e605f08606759f (patch)
tree7ab52c9de634da3dfe55e1f36e87030beff2a3fe /libass/ass_library.h
parent9c7521c0224f16880870839f7492e50b1c8602f7 (diff)
downloadlibass-2303b5430337da60f582613f95e605f08606759f.tar.bz2
libass-2303b5430337da60f582613f95e605f08606759f.tar.xz
Reindent all source code.
Reindent complete source code (*.c, *.h) with indent, the exact command line being: indent -kr -i4 -bap -nut -l76 *.c *.h From now on, new code should use (more or less) K&R style, only spaces and no tabs, 4 spaces indent width. Avoid long lines. Fix function declaration pointer spacing. Remove spaces that were added to many function declarations by indent, like some_func(foo_t * bar). Fix indenting of macros in ass.c
Diffstat (limited to 'libass/ass_library.h')
-rw-r--r--libass/ass_library.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/libass/ass_library.h b/libass/ass_library.h
index ecf46f3..48ffefe 100644
--- a/libass/ass_library.h
+++ b/libass/ass_library.h
@@ -1,5 +1,3 @@
-// -*- c-basic-offset: 8; indent-tabs-mode: t -*-
-// vim:ts=8:sw=8:noet:ai:
/*
* Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
*
@@ -24,18 +22,18 @@
#define LIBASS_LIBRARY_H
typedef struct ass_fontdata_s {
- char* name;
- char* data;
- int size;
+ char *name;
+ char *data;
+ int size;
} ass_fontdata_t;
struct ass_library_s {
- char* fonts_dir;
- int extract_fonts;
- char** style_overrides;
+ char *fonts_dir;
+ int extract_fonts;
+ char **style_overrides;
- ass_fontdata_t* fontdata;
- int num_fontdata;
+ ass_fontdata_t *fontdata;
+ int num_fontdata;
};
-#endif /* LIBASS_LIBRARY_H */
+#endif /* LIBASS_LIBRARY_H */