annotate libass/ass_utils.h @ 19269:0e7dbcd443f2

Move the section describing the per movie config files up, so it doesn't get seperated from the rest of the config file doc by the config file example
author attila
date Mon, 31 Jul 2006 04:18:25 +0000
parents 9e95ac641e77
children fa122b7c71c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18937
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
1 #ifndef __ASS_UTILS_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
2 #define __ASS_UTILS_H__
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
3
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
4 int mystrtoi(char** p, int base, int* res);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
5 int mystrtou32(char** p, int base, uint32_t* res);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
6 int mystrtod(char** p, double* res);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
7 int strtocolor(char** q, uint32_t* res);
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
8 #endif
9e95ac641e77 Initial libass release (without mencoder support).
eugeni
parents:
diff changeset
9