2 quomod - assign quotient and remainder to two variables
16 Returns 0 or 1 according as x is or is not a multiple of y.
17 Let x = q * y + r where q is an integer and 0 <= r < y
18 This function assigns the values q and r to the variables
19 Q and R. If x >= 0, the results for Q and R are the same as
20 those given by Q = x // y, R = x % y.
22 XXX - need to document relationship with "quomod" config value
27 > print quomod(13,5,u,v), u, v, quomod(15.6,5.2,M[0],M[1]), M[0], M[1];
30 > print quomod(13, 5, A[1], A[2]), A[1], A[2]
33 XXX - need examples of how the "quomod" config file changes results
39 BOOL qquomod(NUMBER *q1, NUMBER *q2, NUMBER **retqdiv, NUMBER **retqmod)