Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. strlcpy(p->account,gettoken(NULL,&plast)); //Set Account Information
  2. strlcpy(p->startDate,skipchr(gettoken(NULL,&plast),'0')); /* YYYYMMDD */
  3. strlcpy(p->status,gettoken(NULL,&plast));
  4.  
  5. strlcpy(p->account,gettoken(NULL,&plast),sizeof(p->account)); //Set Account Information
  6. strlcpy(p->startDate,skipchr(gettoken(NULL,&plast),'0'),sizeof(p->startDate)); /* YYYYMMDD */
  7. strlcpy(p->status,gettoken(NULL,&plast),sizeof(p->status));
  8.  
  9. :g/strlcpy(/s/);/,sizeof());/g
  10.  
  11. strlcpy(p->balance,getInfo(NULL,&account),sizeof());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement