comparison libass/ass_utils.h @ 28718:e3b5070f671d

Remove unused function argument.
author eugeni
date Fri, 27 Feb 2009 23:06:50 +0000
parents 7bbe6626f0e0
children 0366ab2c1cb9
comparison
equal deleted inserted replaced
28717:7bbe6626f0e0 28718:e3b5070f671d
23 #ifndef LIBASS_UTILS_H 23 #ifndef LIBASS_UTILS_H
24 #define LIBASS_UTILS_H 24 #define LIBASS_UTILS_H
25 25
26 #include <stdint.h> 26 #include <stdint.h>
27 27
28 int mystrtoi(char** p, int base, int* res); 28 int mystrtoi(char** p, int* res);
29 int mystrtoll(char** p, int base, long long* res); 29 int mystrtoll(char** p, long long* res);
30 int mystrtou32(char** p, int base, uint32_t* res); 30 int mystrtou32(char** p, int base, uint32_t* res);
31 int mystrtod(char** p, double* res); 31 int mystrtod(char** p, double* res);
32 int strtocolor(char** q, uint32_t* res); 32 int strtocolor(char** q, uint32_t* res);
33 33
34 static inline int d6_to_int(int x) { 34 static inline int d6_to_int(int x) {