| 2293 | |
| 2294 | |
| 2295 | void checkpointer(void *ptr,const char *file,const char *function,const char *name,int line) { |
| 2296 | if(ptr == NULL) { |
| 2297 | fprintf(stderr,"[E] error in file %s, %s pointer %s on line %i\n",file,function,name,line); |
| 2298 | exit(EXIT_FAILURE); |
| 2299 | } |
| 2300 | } |
| 2301 | |
| 2302 | void writekey(bool compressed,Int *key) { |
| 2303 | Point publickey; |
no outgoing calls
no test coverage detected