-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[libc] Implement ctime_s #110548
Labels
Comments
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Oct 1, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Oct 2, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Oct 2, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Oct 13, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Oct 17, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Oct 18, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Oct 31, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Oct 31, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Nov 2, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Nov 5, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Nov 12, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Nov 17, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Nov 19, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, size_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Nov 20, 2024
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Jan 7, 2025
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Jan 8, 2025
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Jan 8, 2025
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Jan 8, 2025
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Jan 8, 2025
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Jan 8, 2025
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Jan 9, 2025
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Jan 9, 2025
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Rajveer100
added a commit
to Rajveer100/llvm-project
that referenced
this issue
Jan 9, 2025
Resolves llvm#110548 Definition: ```c++ int ctime_s(char *buffer, rsize_t buffer_size, const time_t *t_ptr); ```
Note: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1967.htm Come to mind. The llvm-libc project as a whole should decide whether supporting Annex K is a goal, or not. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ctime
andctime_r
are already implemented. It might be good to implementctime_s
. This is defined as the following:The text was updated successfully, but these errors were encountered: