diff options
Diffstat (limited to 'src/u8c/fmt.h.d')
-rw-r--r-- | src/u8c/fmt.h.d/fmt.c | 32 | ||||
-rw-r--r-- | src/u8c/fmt.h.d/print.c | 28 | ||||
-rw-r--r-- | src/u8c/fmt.h.d/println.c | 33 | ||||
-rw-r--r-- | src/u8c/fmt.h.d/setfmt.c | 41 | ||||
-rw-r--r-- | src/u8c/fmt.h.d/vfmt.c | 33 | ||||
-rw-r--r-- | src/u8c/fmt.h.d/vprint.c | 60 |
6 files changed, 0 insertions, 227 deletions
diff --git a/src/u8c/fmt.h.d/fmt.c b/src/u8c/fmt.h.d/fmt.c deleted file mode 100644 index 59feb74..0000000 --- a/src/u8c/fmt.h.d/fmt.c +++ /dev/null @@ -1,32 +0,0 @@ -/* - Copyright 2021 Gabriel Jensen - - This file is part of u8c. - - u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - - u8c is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - See the GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License along with u8c. - - If not, see <https://www.gnu.org/licenses/>. -*/ -# include <stdarg.h> -# include <stdbool.h> -# include <stddef.h> -# include <stdint.h> -# include <u8c/fmt.h> -# include <u8c/str.h> -struct u8c_fmt_tuple u8c_fmt(char32_t const * const restrict _in,...) { - struct u8c_fmt_tuple ret; - va_list args; - va_start(args,_in); - struct u8c_vfmt_tuple tuple = u8c_vfmt(_in,args); - va_end(args); - ret.stat = tuple.stat; - ret.str = tuple.str; - ret.strsz = tuple.strsz; - return ret; -} diff --git a/src/u8c/fmt.h.d/print.c b/src/u8c/fmt.h.d/print.c deleted file mode 100644 index e2f4802..0000000 --- a/src/u8c/fmt.h.d/print.c +++ /dev/null @@ -1,28 +0,0 @@ -/* - Copyright 2021 Gabriel Jensen - - This file is part of u8c. - - u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - - u8c is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - See the GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License along with u8c. - - If not, see <https://www.gnu.org/licenses/>. -*/ -# include <stdarg.h> -# include <stdbool.h> -# include <stdint.h> -# include <u8c/fmt.h> -struct u8c_print_tuple u8c_print(FILE * restrict _fp,char32_t const * const restrict _msg,...) { - struct u8c_print_tuple ret; - va_list args; - va_start(args,_msg); - struct u8c_vprint_tuple tuple = u8c_vprint(_fp,_msg,args); - va_end(args); - ret.stat = tuple.stat; - return ret; -} diff --git a/src/u8c/fmt.h.d/println.c b/src/u8c/fmt.h.d/println.c deleted file mode 100644 index d73a897..0000000 --- a/src/u8c/fmt.h.d/println.c +++ /dev/null @@ -1,33 +0,0 @@ -/* - Copyright 2021 Gabriel Jensen - - This file is part of u8c. - - u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - - u8c is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - See the GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License along with u8c. - - If not, see <https://www.gnu.org/licenses/>. -*/ -# include <stdarg.h> -# include <stdbool.h> -# include <stdint.h> -# include <stdio.h> -# include <u8c/fmt.h> -# include <u8c/str.h> -# include <uchar.h> -struct u8c_println_tuple u8c_println(FILE * restrict _fp,char32_t const * const restrict _msg,...) { - struct u8c_println_tuple ret; - va_list args; - va_start(args,_msg); - char32_t const * msg = u8c_strcat(_msg,U"\n").str; - register struct u8c_vprint_tuple const tuple = u8c_vprint(_fp,msg,args); - u8c_strfree(msg); - va_end(args); - ret.stat = tuple.stat; - return ret; -} diff --git a/src/u8c/fmt.h.d/setfmt.c b/src/u8c/fmt.h.d/setfmt.c deleted file mode 100644 index 4c6d3a3..0000000 --- a/src/u8c/fmt.h.d/setfmt.c +++ /dev/null @@ -1,41 +0,0 @@ -/* - Copyright 2021 Gabriel Jensen - - This file is part of u8c. - - u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - - u8c is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - See the GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License along with u8c. - - If not, see <https://www.gnu.org/licenses/>. -*/ -# include <stdbool.h> -# include <stdint.h> -# include <u8c/fmt.h> -# include <u8c/intern.h> -# if defined(u8c_bethrdsafe) -# include <threads.h> -# endif -struct u8c_setfmt_tuple u8c_setfmt(uint_least8_t const _base,bool const _endian) { - struct u8c_setfmt_tuple ret = { - .stat = false, - }; - register uint_least8_t base = _base; - register bool endian = _endian; - if(_base > UINT8_C(0x20)) { - base = UINT8_C(0xC); - } -# if defined(u8c_bethrdsafe) - mtx_lock(&u8c_dat.fmtlock); -# endif - u8c_dat.fmtbase = base; - u8c_dat.fmtendian = endian; -# if defined(u8c_bethrdsafe) - mtx_unlock(&u8c_dat.fmtlock); -# endif - return ret; -} diff --git a/src/u8c/fmt.h.d/vfmt.c b/src/u8c/fmt.h.d/vfmt.c deleted file mode 100644 index 5148784..0000000 --- a/src/u8c/fmt.h.d/vfmt.c +++ /dev/null @@ -1,33 +0,0 @@ -/* - Copyright 2021 Gabriel Jensen - - This file is part of u8c. - - u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - - u8c is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - See the GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License along with u8c. - - If not, see <https://www.gnu.org/licenses/>. -*/ -# include <stdarg.h> -# include <stdbool.h> -# include <u8c/fmt.h> -# include <u8c/str.h> -# include <uchar.h> -# if defined(u8c_bethrdsafe) -# include <threads.h> -# endif -struct u8c_vfmt_tuple u8c_vfmt(char32_t const * const restrict _in,[[maybe_unused]] va_list _args) { - struct u8c_vfmt_tuple ret = { - .stat = false, - }; - struct u8c_strcp_tuple const tuple = u8c_strcp(_in); - ret.stat = tuple.stat; - ret.str = tuple.str; - ret.strsz = tuple.strsz; - return ret; -} diff --git a/src/u8c/fmt.h.d/vprint.c b/src/u8c/fmt.h.d/vprint.c deleted file mode 100644 index cfcb850..0000000 --- a/src/u8c/fmt.h.d/vprint.c +++ /dev/null @@ -1,60 +0,0 @@ -/* - Copyright 2021 Gabriel Jensen - - This file is part of u8c. - - u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - - u8c is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - - See the GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License along with u8c. - - If not, see <https://www.gnu.org/licenses/>. -*/ -# include <stdarg.h> -# include <stdbool.h> -# include <stdint.h> -# include <stdio.h> -# include <stdlib.h> -# include <u8c/SIZE_C.h> -# include <u8c/err.h> -# include <u8c/fmt.h> -# include <u8c/intern.h> -# include <u8c/str.h> -# include <u8c/u8.h> -# include <uchar.h> -# if defined(u8c_bethrdsafe) -# include <threads.h> -# endif -struct u8c_vprint_tuple u8c_vprint(FILE * restrict _fp,char32_t const * const restrict _msg,va_list _args) { - struct u8c_vprint_tuple ret = { - .stat = false, - }; - char32_t const * str0 = u8c_vfmt(_msg,_args).str; - size_t str1sz = SIZE_C(0x0); - unsigned char const * str1 = NULL; - { - struct u8c_u8enc_tuple const tuple = u8c_u8enc(str0); - str1 = tuple.u8; - str1sz = tuple.u8sz; - } -# if defined(u8c_bethrdsafe) - mtx_lock(&u8c_dat.outlock); -# endif - { - register size_t const val = fwrite(str1,sizeof(uint_least8_t),str1sz - SIZE_C(0x1),_fp); -# if defined(u8c_bethrdsafe) - mtx_unlock(&u8c_dat.outlock); -# endif - if(val < str1sz - SIZE_C(0x1)) { - u8c_seterr(u8c_errtyp_badio,U"u8c_vprint: Unable to write to stdout."); - ret.stat = true; - return ret; - } - } - u8c_strfree(str0); - u8c_u8free(str1); - return ret; -} |