Changeset 3192 for trunk/src/kmk/output.h
- Timestamp:
- Mar 26, 2018, 10:25:56 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/output.h
r3190 r3192 14 14 You should have received a copy of the GNU General Public License along with 15 15 this program. If not, see <http://www.gnu.org/licenses/>. */ 16 17 #ifndef INCLUDED_MAKE_OUTPUT_H 18 #define INCLUDED_MAKE_OUTPUT_H 16 19 17 20 #ifdef CONFIG_WITH_OUTPUT_IN_MEMORY … … 81 84 void outputs (int is_err, const char *msg); 82 85 #ifdef CONFIG_WITH_OUTPUT_IN_MEMORY 83 voidoutput_write_bin (struct output *out, int is_err, const char *src, size_t len);84 voidoutput_write_text (struct output *out, int is_err, const char *src, size_t len);86 ssize_t output_write_bin (struct output *out, int is_err, const char *src, size_t len); 87 ssize_t output_write_text (struct output *out, int is_err, const char *src, size_t len); 85 88 #endif 86 89 … … 90 93 void output_dump (struct output *out); 91 94 #endif 95 96 #endif /* INLCUDED_MAKE_OUTPUT_H */ 97
Note:
See TracChangeset
for help on using the changeset viewer.