Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
1
Task/Naming-conventions/C/naming-conventions-1.c
Normal file
1
Task/Naming-conventions/C/naming-conventions-1.c
Normal file
|
|
@ -0,0 +1 @@
|
|||
O_RDONLY, O_WRONLY, or O_RDWR. O_CREAT, O_EXCL, O_NOCTTY, and O_TRUNC
|
||||
2
Task/Naming-conventions/C/naming-conventions-2.c
Normal file
2
Task/Naming-conventions/C/naming-conventions-2.c
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
extern size_t fwrite (__const void *__restrict __ptr, size_t __size,
|
||||
size_t __n, FILE *__restrict __s) __wur;
|
||||
4
Task/Naming-conventions/C/naming-conventions-3.c
Normal file
4
Task/Naming-conventions/C/naming-conventions-3.c
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#include <math.h>
|
||||
double cos(double x);
|
||||
float cosf(float x);
|
||||
long double cosl(long double x);
|
||||
4
Task/Naming-conventions/C/naming-conventions-4.c
Normal file
4
Task/Naming-conventions/C/naming-conventions-4.c
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#include <complex.h>
|
||||
double complex ccos(double complex z);
|
||||
float complex ccosf(float complex z);
|
||||
long double complex ccosl(long double complex z);
|
||||
13
Task/Naming-conventions/C/naming-conventions-5.c
Normal file
13
Task/Naming-conventions/C/naming-conventions-5.c
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int printf(const char *format, ...);
|
||||
int fprintf(FILE *stream, const char *format, ...);
|
||||
int sprintf(char *str, const char *format, ...);
|
||||
int snprintf(char *str, size_t size, const char *format, ...);
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
int vprintf(const char *format, va_list ap);
|
||||
int vfprintf(FILE *stream, const char *format, va_list ap);
|
||||
int vsprintf(char *str, const char *format, va_list ap);
|
||||
int vsnprintf(char *str, size_t size, const char *format, va_list ap);
|
||||
Loading…
Add table
Add a link
Reference in a new issue