#inlcude Flashcards
Whats the include for standard input/output?
<stdio.h>
</stdio.h>
Whats the include for memory allocation and program control (exit, abort)?
<stdlib.h>
</stdlib.h>
Whats the include for POSIX API like fork(), exec(), pipe()
<unistd.h>
</unistd.h>
Whats the include for signals? like SIGINT, SIGKILL?
<signal.h>
</signal.h>
Whats the include for file control options? like open()
<fcntl.h>
</fcntl.h>
Whats the include for data types used in syste mcalls? like pid_t size_t?
<sys/types.h>
Whats the include for macros and fucntions for parent/child processes?
<sys/wait.h>
Whats the include for stat() and chmod()?
<sys/stat.h>
Whats the include for things like memory management function like mmap()?
<sys/mman.h>
Whats the include for socket programing?
<sys/socket.h>
Whats the include for manipulating IP addresses?
<arpa/inet.h>
Whats the include for IPv4 and IPv6?
<netinet/in.h>
Whats the include for managing system resources?
<sys/resource.h>
Whats the include for measuring time?
<sys/time.h>
Whats the include for for handling timestamps and conversions?
<time.h>
</time.h>
Whats the include for for retrieving user account information like getpwnam()? pwd
<pwd.h>
</pwd.h>
Whats the include for things like grep?
<grp.h>
</grp.h>
Whats the include for errno and reporting errors?
<errno.h>
</errno.h>
Name me 7 functions in String.h
strcmp(), strlen(), strcpy(), strncpy(), strcat(), strncmp(), memcpy()