| 1636 | |
| 1637 | |
| 1638 | static void |
| 1639 | icvYMLWriteInt( CvFileStorage* fs, const char* key, int value ) |
| 1640 | { |
| 1641 | char buf[128]; |
| 1642 | icvYMLWrite( fs, key, icv_itoa( value, buf, 10 )); |
| 1643 | } |
| 1644 | |
| 1645 | |
| 1646 | static void |
nothing calls this directly
no test coverage detected