Changeset 2161 for trunk/src/kmk/expreval.c
- Timestamp:
- Dec 29, 2008, 11:20:11 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/expreval.c
r2117 r2161 2073 2073 * Evaluates the given if expression. 2074 2074 * 2075 * @returns -1, 0 or 1. 2075 * @returns -1, 0 or 1. (GNU make conditional check convention, see read.c.) 2076 2076 * @retval -1 if the expression is invalid. 2077 2077 * @retval 0 if the expression is true 2078 2078 * @retval 1 if the expression is false. 2079 2079 * 2080 * @param line The expression. Can modify this as we like.2080 * @param line The expression. 2081 2081 * @param flocp The file location, used for errors. 2082 2082 */ 2083 int expr_eval_if_conditionals(c har *line, const struct floc *flocp)2083 int expr_eval_if_conditionals(const char *line, const struct floc *flocp) 2084 2084 { 2085 2085 /* … … 2115 2115 * @param expr The expression. 2116 2116 */ 2117 char *expr_eval_to_string(char *o, c har *expr)2117 char *expr_eval_to_string(char *o, const char *expr) 2118 2118 { 2119 2119 /*
Note:
See TracChangeset
for help on using the changeset viewer.