| 363 | } |
| 364 | |
| 365 | static void |
| 366 | xmlC14NVisibleNsStackShift(xmlC14NVisibleNsStackPtr cur) { |
| 367 | if(cur == NULL) { |
| 368 | xmlC14NErrParam(NULL); |
| 369 | return; |
| 370 | } |
| 371 | cur->nsPrevStart = cur->nsPrevEnd; |
| 372 | cur->nsPrevEnd = cur->nsCurEnd; |
| 373 | } |
| 374 | |
| 375 | static int |
| 376 | xmlC14NStrEqual(const xmlChar *str1, const xmlChar *str2) { |
no test coverage detected