Guest User

ok , global variable is condemned, singleton is despised, what's the alternative

a guest
Feb 27th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. typedef struct Pnmrdr_T *Pnmrdr_T;
  2.  
  3. struct Pnmrdr_T *Pnmrdr_new(FILE *);
  4. pixel Pnmrdr_get(Pnmrdr_T);
  5. void Pnmrdr_close(Pnmrdr_T);
  6. void Pnmrdr_free(Pnmrdr_T *rp); // frees memory and sets *rp = NULL
Add Comment
Please, Sign In to add comment