#include "asn1.h" unsigned int scan_asn1rawint(const char* src,const char* max,unsigned int len,long* l) { unsigned int i,j; long m; if (*src<0) m=-1; else m=0; for (i=j=0; imax) return 0; } if (j>sizeof(long)) return 0; *l=m; return len; }