/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/Stream.h

  • Committer: Gustav Hartvigsson
  • Date: 2016-01-30 21:23:29 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160130212329-cjpxy0vn851li8f3
* added S_EXPERTED to public functions.
* renamed -  internal_s_box_set_err_on_missmatch () to _internal_s_box_set_err_on_missmatch ().
* Replaced some tabs with spaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
/**
43
43
 * Create a new stream.
44
44
 */
 
45
S_EXPORTED
45
46
SStream *
46
47
s_stream_new ();
47
48
 
48
49
/**
49
50
 *
50
51
 */
 
52
S_EXPORTED
51
53
size_t
52
54
s_stream_get_beffered (SStream * self);
53
55
 
65
67
 * @warning If the requested length is not available the rest will be
66
68
 *          zeroed out in the output.
67
69
 */
 
70
S_EXPORTED
68
71
sbyte *
69
72
s_stream_read (SStream * self,
70
73
               size_t len);
80
83
 * @param len The number of items to write to the stream.
81
84
 * @param data The bytes to be put in the stream.
82
85
 */
 
86
S_EXPORTED
83
87
void
84
88
s_stream_write (SStream * self,
85
89
                size_t len,