Differences From Artifact [e0f5011968]:
- File
src/OFStream.h
— part of check-in
[d83d3aa719]
at
2013-10-10 13:18:35
on branch trunk
— Add OFDeflateStream.
No compression support yet, only decompression.
Decompression speed is acceptable for productive use, but there is still
a lot of room for optimization as this is a very straightforward
implementation without much optimization. (user: js, size: 37556) [annotate] [blame] [check-ins using]
To Artifact [0895acb1d9]:
- File src/OFStream.h — part of check-in [e803913a9d] at 2013-11-22 19:27:05 on branch trunk — of_asprintf: Add %C format specifier. (user: js, size: 37604) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
983 984 985 986 987 988 989 | - (size_t)writeLine: (OFString*)string encoding: (of_string_encoding_t)encoding; /*! * @brief Writes a formatted string into the stream. * * See printf for the format syntax. As an addition, %@ is available as format | | | | 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 | - (size_t)writeLine: (OFString*)string encoding: (of_string_encoding_t)encoding; /*! * @brief Writes a formatted string into the stream. * * See printf for the format syntax. As an addition, %@ is available as format * specifier for objects and %C for of_unichar_t. * * @param format A string used as format * @return The number of bytes written */ - (size_t)writeFormat: (OFConstantString*)format, ...; /*! * @brief Writes a formatted string into the stream. * * See printf for the format syntax. As an addition, %@ is available as format * specifier for objects and %C for of_unichar_t. * * @param format A string used as format * @param arguments The arguments used in the format string * @return The number of bytes written */ - (size_t)writeFormat: (OFConstantString*)format arguments: (va_list)arguments; |
︙ | ︙ |