Mercurial > mplayer.hg
comparison libass/ass_utils.h @ 23689:3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
author | diego |
---|---|
date | Mon, 02 Jul 2007 22:34:45 +0000 |
parents | 0ee56ec36a40 |
children | 3baf6a2283da |
comparison
equal
deleted
inserted
replaced
23688:3454aed9d083 | 23689:3f0d00abc073 |
---|---|
16 You should have received a copy of the GNU General Public License | 16 You should have received a copy of the GNU General Public License |
17 along with this program; if not, write to the Free Software | 17 along with this program; if not, write to the Free Software |
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
19 */ | 19 */ |
20 | 20 |
21 #ifndef __ASS_UTILS_H__ | 21 #ifndef ASS_UTILS_H |
22 #define __ASS_UTILS_H__ | 22 #define ASS_UTILS_H |
23 | 23 |
24 int mystrtoi(char** p, int base, int* res); | 24 int mystrtoi(char** p, int base, int* res); |
25 int mystrtou32(char** p, int base, uint32_t* res); | 25 int mystrtou32(char** p, int base, uint32_t* res); |
26 int mystrtod(char** p, double* res); | 26 int mystrtod(char** p, double* res); |
27 int strtocolor(char** q, uint32_t* res); | 27 int strtocolor(char** q, uint32_t* res); |