Skip to content
Snippets Groups Projects
Commit 2b349a92 authored by tewk's avatar tewk
Browse files

Added prototypes

parent 2e808090
No related branches found
No related tags found
No related merge requests found
...@@ -12,4 +12,7 @@ typedef struct circular_buffer ...@@ -12,4 +12,7 @@ typedef struct circular_buffer
char * tail ; /* one char past the last char of the buffer */ char * tail ; /* one char past the last char of the buffer */
} circular_buffer_t ; } circular_buffer_t ;
int init_cir_buf ( circular_buffer_t ** buf_ptr ) ;
int read_update ( circular_buffer_t * buf , unsigned int size ) ;
int write_update ( circular_buffer_t * buf , unsigned int size ) ;
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment