| 70 | |
| 71 | |
| 72 | static int verify_copy_array( int *inptr, int *outptr, int n ) |
| 73 | { |
| 74 | int i; |
| 75 | |
| 76 | for( i = 0; i < n; i++ ) { |
| 77 | if( outptr[i] != inptr[i] ) |
| 78 | return -1; |
| 79 | } |
| 80 | |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | |
| 85 | //----- helper functions |
no outgoing calls
no test coverage detected