--- sio.h 2002/11/08 10:34:24 1.4
+++ sio.h 2002/11/14 09:10:53 1.5
@@ -65,27 +65,27 @@
struct sio_module_st;
typedef struct sio_module_st sio_module_t;
-sio_rc_t sio_create(sio_t **siop);
-sio_rc_t sio_destroy(sio_t *sio);
+sio_rc_t sio_create (sio_t **siop);
+sio_rc_t sio_destroy (sio_t *sio);
-sio_rc_t sio_create_stage(sio_t *sio, sio_module_t *siom, sio_stage_t **siosp);
-sio_rc_t sio_destroy_stage(sio_t *sio, sio_stage_t *sios);
-sio_rc_t sio_configure_stage(sio_t *sio, sio_stage_t *sios, void *o, void *v);
+sio_rc_t sio_create_stage (sio_t *sio, sio_module_t *siom, sio_stage_t **siosp);
+sio_rc_t sio_destroy_stage (sio_t *sio, sio_stage_t *sios);
+sio_rc_t sio_configure_stage(sio_t *sio, sio_stage_t *sios, void *o, void *v);
-sio_rc_t sio_attach(sio_t *sio, sio_stage_t *sios, sio_mode_t rw);
-sio_rc_t sio_detach(sio_t *sio, sio_stage_t *sios);
+sio_rc_t sio_attach (sio_t *sio, sio_stage_t *sios, sio_mode_t rw);
+sio_rc_t sio_detach (sio_t *sio, sio_stage_t *sios);
-sio_rc_t sio_input(sio_t *sio, al_t *al, size_t limit);
-sio_rc_t sio_output(sio_t *sio, al_t *al);
+sio_rc_t sio_input (sio_t *sio, al_t *al, size_t limit);
+sio_rc_t sio_output (sio_t *sio, al_t *al);
-sio_rc_t sio_read(sio_t *sio, char *dst, size_t n, size_t *actualp);
-sio_rc_t sio_write(sio_t *sio, char *src, size_t n, size_t *actualp);
+sio_rc_t sio_read (sio_t *sio, char *dst, size_t n, size_t *actualp);
+sio_rc_t sio_write (sio_t *sio, char *src, size_t n, size_t *actualp);
-sio_rc_t sio_push(sio_t *sio);
+sio_rc_t sio_push (sio_t *sio);
-int sio_flag(sio_t *sio, sio_flag_t fl);
-int sio_clearflag(sio_t *sio, sio_flag_t fl);
+int sio_flag (sio_t *sio, sio_flag_t fl);
+int sio_clearflag (sio_t *sio, sio_flag_t fl);
-const char *sio_error(sio_rc_t rc);
+const char *sio_error (sio_rc_t rc);
#endif /* __SIO_H__ */
|