Changeset 6045ecf in mainline for uspace/lib/fmtutil/fmtutil.h


Ignore:
Timestamp:
2011-08-21T10:28:01Z (14 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f737c1d5
Parents:
19d007e
Message:

Enhance justify aligment mode and align bdsh help to the left

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/fmtutil/fmtutil.h

    r19d007e r6045ecf  
    3939 * @param content pointer to line data (note: this is NOT null-terminated)
    4040 * @param size number of characters in line
     41 * @param end_of_para true if the line is the last line of the paragraph
    4142 * @param data user data
    4243 *
    4344 * @returns EOK on success or error code on failure
    4445 */
    45 typedef int (*line_consumer_fn)(wchar_t *, size_t, void *);
     46typedef int (*line_consumer_fn)(wchar_t *, size_t, bool, void *);
    4647
    47 extern int print_aligned_w(const wchar_t *, size_t, align_mode_t);
    48 extern int print_aligned(const char *, size_t, align_mode_t);
     48extern int print_aligned_w(const wchar_t *, size_t, bool, align_mode_t);
     49extern int print_aligned(const char *, size_t, bool, align_mode_t);
    4950extern int print_wrapped(const char *, size_t, align_mode_t);
    5051extern int print_wrapped_console(const char *, align_mode_t);
Note: See TracChangeset for help on using the changeset viewer.