Changeset 1b20da0 in mainline for uspace/lib/posix/src/stdio.c


Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/src/stdio.c

    rdf6ded8 r1b20da0  
    148148/**
    149149 * Read a stream until the newline (or EOF) is encountered.
    150  * 
     150 *
    151151 * @param lineptr Pointer to the output buffer in which there will be stored
    152152 *     nul-terminated string together with the delimiter (if encountered).
     
    208208/**
    209209 * Reposition a file-position indicator in a stream.
    210  * 
     210 *
    211211 * @param stream Stream to seek in.
    212212 * @param offset Direction and amount of bytes to seek.
     
    221221/**
    222222 * Discover current file offset in a stream.
    223  * 
     223 *
    224224 * @param stream Stream for which the offset shall be retrieved.
    225225 * @return Current offset or -1 if not possible.
     
    265265/**
    266266 * Write wide string to the opened file.
    267  * 
     267 *
    268268 * @param str String to be written.
    269269 * @param size Size of the string (in bytes).
     
    298298/**
    299299 * Print formatted output to the opened file.
    300  * 
     300 *
    301301 * @param fildes File descriptor of the opened file.
    302302 * @param format Format description.
     
    317317/**
    318318 * Print formatted output to the string.
    319  * 
     319 *
    320320 * @param s Output string.
    321321 * @param format Format description.
     
    334334/**
    335335 * Print formatted output to the string.
    336  * 
     336 *
    337337 * @param s Output string.
    338338 * @param format Format description.
     
    348348/**
    349349 * Convert formatted input from the stream.
    350  * 
     350 *
    351351 * @param stream Input stream.
    352352 * @param format Format description.
     
    364364/**
    365365 * Convert formatted input from the standard input.
    366  * 
     366 *
    367367 * @param format Format description.
    368368 * @return The number of converted output items or EOF on failure.
     
    379379/**
    380380 * Convert formatted input from the standard input.
    381  * 
     381 *
    382382 * @param format Format description.
    383383 * @param arg Output items.
     
    391391/**
    392392 * Convert formatted input from the string.
    393  * 
     393 *
    394394 * @param s Input string.
    395395 * @param format Format description.
     
    472472/**
    473473 * Put a byte on the standard output stream (thread-unsafe).
    474  * 
     474 *
    475475 * @param c Byte to output.
    476476 * @return Either written byte or EOF.
Note: See TracChangeset for help on using the changeset viewer.