#121907 - sgeos - Thu Mar 15, 2007 4:32 pm
Does anyone have a cute set of names to cover the following set of related functions? The last three can all be generically described as "operate on a list" and this is giving me trouble.
-Brendan
Code: |
return_t opSingle (op_t *pOp, buffer_t *pBuffer);
// one operation return_t opList (op_t *pOp, buffer_t *pBuffer); // while (NULL != buffer) another operation return_t opMultiple(op_t *pOp, buffer_t *pBuffer, int pCount); // for (i < pCount) another operation return_t opSafe (op_t *pOp, buffer_t *pBuffer, int pCount); // while (NULL != buffer) && (i < pCount) another operation |
-Brendan