| 1004 | // ------------------------------------------------ |
| 1005 | |
| 1006 | std::string Int::GetBlockStr() { |
| 1007 | |
| 1008 | char tmp[256]; |
| 1009 | char bStr[256]; |
| 1010 | tmp[0] = 0; |
| 1011 | for (int i = NB32BLOCK-3; i>=0 ; i--) { |
| 1012 | sprintf(bStr, "%08X", bits[i]); |
| 1013 | strcat(tmp, bStr); |
| 1014 | if(i!=0) strcat(tmp, " "); |
| 1015 | } |
| 1016 | return std::string(tmp); |
| 1017 | } |
| 1018 | |
| 1019 | // ------------------------------------------------ |
| 1020 |
nothing calls this directly
no outgoing calls
no test coverage detected