view libass/ass_utils.h @ 19108:5e767cabf4cd

marks several read-only string parameters and function return-values which can only be used read-only as const. Patch by Stefan Huehner, stefan _AT huener-org
author reynaldo
date Sun, 16 Jul 2006 01:20:30 +0000
parents 9e95ac641e77
children fa122b7c71c6
line wrap: on
line source

#ifndef __ASS_UTILS_H__
#define __ASS_UTILS_H__

int mystrtoi(char** p, int base, int* res);
int mystrtou32(char** p, int base, uint32_t* res);
int mystrtod(char** p, double* res);
int strtocolor(char** q, uint32_t* res);
#endif