int im_remainderconst_vec( IMAGE *in, IMAGE *out, int n, double *c ) { return( im_remainder_vec( in, out, n, c ) ); }
/** * im_remainderconst: * @in: input #IMAGE * @out: output #IMAGE * @c: constant * * This operation calculates @in % @c (remainder after division by constant) * and writes the result to @out. The image must be one of the integer types. * * See also: im_remainder_vec(), im_divide(). * * Returns: 0 on success, -1 on error */ int im_remainderconst( IMAGE *in, IMAGE *out, double c ) { return( im_remainder_vec( in, out, 1, &c ) ); }