| 63 | // Swap two floating point values. |
| 64 | |
| 65 | void SwapR(real *d1, real *d2) |
| 66 | { |
| 67 | real temp; |
| 68 | |
| 69 | temp = *d1; *d1 = *d2; *d2 = temp; |
| 70 | } |
| 71 | |
| 72 | |
| 73 | // Return the length of a string (not counting the null terminator). |
no outgoing calls
no test coverage detected