Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. no .h
  2.  
  3. struct  SingletonCoiso;
  4.  
  5. SingletonCoiso *instance();
  6.  
  7. no .c
  8.  
  9. struct SingletonCoiso {
  10.     char *_name;
  11. }
  12.  
  13. SingletonCoiso instance() {
  14.     static SingletonCoiso *_instance = malloc(sizeof(SingletonCoiso));
  15.     return _instance;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement