| 45 | static int treeAddShapeId(treeObj *tree, int id, rectObj rect); |
| 46 | |
| 47 | static void SwapWord( int length, void * wordP ) |
| 48 | { |
| 49 | int i; |
| 50 | uchar temp; |
| 51 | |
| 52 | for( i=0; i < length/2; i++ ) |
| 53 | { |
| 54 | temp = ((uchar *) wordP)[i]; |
| 55 | ((uchar *)wordP)[i] = ((uchar *) wordP)[length-i-1]; |
| 56 | ((uchar *) wordP)[length-i-1] = temp; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | static void * SfRealloc( void * pMem, int nNewSize ) |
| 61 |
no outgoing calls
no test coverage detected