| 955 | // ------------------------------------------------ |
| 956 | |
| 957 | char* Int::GetBlockStr() { |
| 958 | char *tmp = (char*) calloc(1,256); |
| 959 | char bStr[256]; |
| 960 | tmp[0] = 0; |
| 961 | for (int i = NB32BLOCK-3; i>=0 ; i--) { |
| 962 | sprintf(bStr, "%08X", bits[i]); |
| 963 | strcat(tmp, bStr); |
| 964 | if(i!=0) strcat(tmp, " "); |
| 965 | } |
| 966 | return tmp; |
| 967 | } |
| 968 | |
| 969 | // ------------------------------------------------ |
| 970 |
nothing calls this directly
no outgoing calls
no test coverage detected