?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _IFIFO_H_
  2. #define _IFIFO_H_
  3.  
  4. void ififo_init(void);
  5. void ififo_free(void);
  6.  
  7. void ififo_put(uint32_t);
  8. uint32_t ififo_get(void);
  9.  
  10. size_t ififo_used(void);
  11.  
  12.  
  13. #endif // _IFIFO_H_
  14.  
  15.