| 38 | const size_t kElectronicKeyFormat4Size = sizeof(ElectronicKeyFormat4); |
| 39 | |
| 40 | ElectronicKeyFormat4 *ElectronicKeyFormat4New() { |
| 41 | return (ElectronicKeyFormat4 *)calloc( 1, sizeof(ElectronicKeyFormat4) ); |
| 42 | } |
| 43 | |
| 44 | void ElectronicKeyFormat4Delete(ElectronicKeyFormat4 **electronic_key) { |
| 45 | free(*electronic_key); |
no outgoing calls