| 5980 | } |
| 5981 | |
| 5982 | void checkpointer(void *ptr,const char *file,const char *function,const char *name,int line) { |
| 5983 | if(ptr == NULL) { |
| 5984 | fprintf(stderr,"[E] error in file %s, %s pointer %s on line %i\n",file,function,name,line); |
| 5985 | exit(EXIT_FAILURE); |
| 5986 | } |
| 5987 | } |
| 5988 | |
| 5989 | void writekey(bool compressed,Int *key) { |
| 5990 | Point publickey; |
no outgoing calls
no test coverage detected