comparison eval.h @ 11621:84df190892f4 libavcodec

Fix grammar: a expression -> an expression.
author stefano
date Mon, 12 Apr 2010 21:49:04 +0000
parents 29bd5deb7dfc
children 7dd2a45249a9
comparison
equal deleted inserted replaced
11620:29bd5deb7dfc 11621:84df190892f4
47 double (* const *func1)(void *, double), const char * const *func1_name, 47 double (* const *func1)(void *, double), const char * const *func1_name,
48 double (* const *func2)(void *, double, double), const char * const *func2_name, 48 double (* const *func2)(void *, double, double), const char * const *func2_name,
49 void *opaque, const char **error); 49 void *opaque, const char **error);
50 50
51 /** 51 /**
52 * Parses a expression. 52 * Parses an expression.
53 * 53 *
54 * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)" 54 * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"
55 * @param func1 NULL terminated array of function pointers for functions which take 1 argument 55 * @param func1 NULL terminated array of function pointers for functions which take 1 argument
56 * @param func2 NULL terminated array of function pointers for functions which take 2 arguments 56 * @param func2 NULL terminated array of function pointers for functions which take 2 arguments
57 * @param const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0} 57 * @param const_name NULL terminated array of zero terminated strings of constant identifers for example {"PI", "E", 0}