ObjFW  Diff

Differences From Artifact [abdf3e16b1]:

To Artifact [6718a13472]:


125
126
127
128
129
130
131








132
133
134
135
136
 * Writes a string into the stream, without the trailing zero.
 *
 * \param str The string from which the data is written to the stream
 * \return The number of bytes written
 */
- (size_t)writeString: (OFString*)str;









/**
 * Closes the stream.
 */
- close;
@end







>
>
>
>
>
>
>
>





125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
 * Writes a string into the stream, without the trailing zero.
 *
 * \param str The string from which the data is written to the stream
 * \return The number of bytes written
 */
- (size_t)writeString: (OFString*)str;

/**
 * Writes a string into the stream with a trailing newline.
 *
 * \param str The string from which the data is written to the stream
 * \return The number of bytes written
 */
- (size_t)writeLine: (OFString*)str;

/**
 * Closes the stream.
 */
- close;
@end