Searched defs:lhs (Results 1 - 1 of 1) sorted by relevance
/dovecot/src/lib/ |
H A D | var-expand-if.c | 64 static int var_expand_if_comp(const char *lhs, const char *_op, const char *rhs, argument 79 if (str_to_intmax(lhs, &a) < 0) { 80 *error_r = t_strdup_printf("if: %s (lhs) is not a number", lhs); 113 *result_r = strcmp(lhs,rhs)==0; 116 *result_r = strcmp(lhs,rhs)<0; 119 *result_r = strcmp(lhs,rhs)<=0; 122 *result_r = strcmp(lhs,rhs)>0; 125 *result_r = strcmp(lhs,rhs)>=0; 128 *result_r = strcmp(lhs,rh [all...] |
Completed in 739 milliseconds