- Dec 12, 2023
-
-
- Nov 12, 2023
-
-
Jacob Lorentzon authored
-
- Oct 25, 2023
-
-
Darley Barreto authored
-
- Oct 19, 2023
-
-
- Oct 14, 2023
-
-
- May 22, 2023
-
-
- May 11, 2023
-
-
Jeremy Soller authored
-
- May 10, 2023
-
-
- May 09, 2023
-
-
- May 08, 2023
-
-
- Dec 17, 2022
-
-
Jeremy Soller authored
-
- Jul 08, 2020
-
-
Wren Turkal authored
When a byte-oriented stream function touches a stream, that stream should be set to byte-oriented mode if it hasn't been set yet. If it has been set, the opertion should only succeed if the stream is already in byte-oriented mode. Signed-off-by:
Wren Turkal <wt@penguintechs.org>
-
Wren Turkal authored
This function is used to set the orientation of a stream to either byte-oriented or wchar-oriented. More info on this function is here: https://man7.org/linux/man-pages/man3/fwide.3p.html This implementation only impmlemnts the manual switching and does not yet guard against using a byte-oriented stream with wchar functions and vice versa. Those step will come in additional commits. Signed-off-by:
Wren Turkal <wt@penguintechs.org>
-
- Apr 26, 2020
-
-
Ahmed Abd El Mawgood authored
-
- Nov 14, 2019
-
-
- Jul 18, 2019
-
- Feb 25, 2019
-
-
Emma Turner authored
-
- Feb 24, 2019
-
-
Nagy Tibor authored
realpath: Fixing undefined behaviour in the second test. If the call fails the resolved_name argument cannot be used for error checking because its state is undefined by SUSv2. pipe: Changing the order of close and write error handling code. Errors in close could overwrite errno after write errors, returning incorrect error messages. gmtime: Removed duplicate checks Other fixes for fseek, rename, mktime, putwchar
-
- Feb 22, 2019
-
-
Emma Turner authored
-
- Feb 21, 2019
-
-
Nagy Tibor authored
-
Nagy Tibor authored
This will allow us to redefine the exit function. For example: ``` #define exit(code) { \ fprintf(stderr, "%s:%d: exit(%s) in function ‘%s’\n", __FILE__, __LINE__, #code, __func__); \ _exit(code); \ } ```
-
- Feb 20, 2019
-
-
Nagy Tibor authored
When the execution reaches the end of the main functions, they implicitly return a successful status.
-
Nagy Tibor authored
-
Nagy Tibor authored
-
Nagy Tibor authored
-
- Nov 27, 2018
-
-
Jeremy Soller authored
- Remove incorrect header styles - Use export.replace where header style was previously needed - Check compilation of tests using system gcc
-
- Jul 01, 2018
-
-