Definition at line 11 of file Endian.h. References swap(). Referenced by EndianSwap(). 00012 { 00013 int i = 0; 00014 int j = n-1; 00015 while (i<j) 00016 { 00017 std::swap(b[i], b[j]); 00018 i++; 00019 j--; 00020 } 00021 }
Here is the call graph for this function:
|