static | _Exit(int)Perform normal program termination. |
static | abort()Cause abnormal program termination. |
static | calloc(ulong, ulong) : IntPtrAllocate and zero-fill memory. |
static | clearerr(IntPtr) : intClear FILE stream status. |
static | exit(int)Terminates the process that calls the function with the exit status status. |
static | fclose(IntPtr) : intClose a FILE stream. |
static | feof(IntPtr) : intTest end-of-file indicator for the FILE stream. |
static | ferror(IntPtr) : intTests the error indicator for the FILE stream. |
static | fflush(IntPtr) : intFlush a FILE stream. |
static | fgetc(IntPtr) : intGet next character from a FILE input stream. |
static | fgetpos(IntPtr, FilePosition) : intRetrieve the current file position of a FILE stream. |
static | fgets(System.Text.StringBuilder, IntPtr) : System.Text.StringBuilderRead a line from a FILE stream. |
static | fgets(System.Text.StringBuilder, int, IntPtr) : System.Text.StringBuilderRead a line from a FILE stream. |
static | fopen(string, string) : IntPtrOpen a file and associate a FILE stream with it. |
static | fprintf(IntPtr, string) : intPrint to a FILE stream. |
static | fprintf(IntPtr, string, params object[]) : intPrint to a FILE stream. |
static | fputc(int, IntPtr) : intOutput a character to a FILE stream. |
static | fputs(string, IntPtr) : intOutput a line to a FILE stream. |
static | fread(byte[], IntPtr) : ulongRead from a binary stream. |
static | fread(byte[], ulong, ulong, IntPtr) : ulongRead from a binary stream. |
static | fread(IntPtr, ulong, ulong, IntPtr) : ulongRead from a binary stream. |
static | fread(void*, ulong, ulong, IntPtr) : ulongRead from a binary stream. |
static | free(IntPtr)Free allocated memory. |
static | freopen(string, string, IntPtr) : IntPtrReopen a FILE stream. |
static | fseek(IntPtr, long, SeekFlags) : intSet file position for a FILE stream. |
static | fsetpos(IntPtr, FilePosition) : intSets the current file position of a FILE stream. |
static | ftell(IntPtr) : longGet current file position for FILE stream. |
static | fwrite(byte[], IntPtr) : ulongWrite to a binary FILE stream. |
static | fwrite(byte[], ulong, ulong, IntPtr) : ulongWrite to a binary FILE stream. |
static | fwrite(IntPtr, ulong, ulong, IntPtr) : ulongWrite to a binary FILE stream. |
static | fwrite(void*, ulong, ulong, IntPtr) : ulongWrite to a binary FILE stream. |
static | getc(IntPtr) : intGet next character from a FILE input stream. |
static | getchar() : intGet next character from standard input. |
static | getenv(string) : stringRead an environment variable. |
static | GetLastError() : ErrnoReads and translates errno. |
static | malloc(ulong) : IntPtrAllocate memory. |
static | perror(string) : intPrint an error message to Stdlib.stderr. |
static | printf(string) : intPrints a message on Stdlib.stdout. |
static | printf(string, params object[]) : intPrints a message on Stdlib.stdout. |
static | putc(int, IntPtr) : intOutput a character to a FILE stream. |
static | putchar(int) : intOutput a character to a Stdlib.stdout. |
static | puts(string) : intOutput a line to Stdlib.stdout. |
static | raise(RealTimeSignum) : intSend a realtime signal to the current process. |
static | raise(Signum) : intSend a signal to the current process. |
static | rand() : intGenerates a random number. |
static | realloc(IntPtr, ulong) : IntPtrReallocate a memory block. |
static | remove(string) : intRemove a directory entry. |
static | rename(string, string) : intRename oldpath to newpath. |
static | rewind(IntPtr) : intSet the file position indicator of the FILE stream to the beginning of the file. |
static | setbuf(IntPtr, byte*) : intControl FILE stream buffering operations. |
static | setbuf(IntPtr, IntPtr) : intControl FILE stream buffering operations. |
static | SetSignalAction(RealTimeSignum, SignalAction) : int
Specifies what should happen when a signal is emitted.
|
static | SetSignalAction(Signum, SignalAction) : int
Specifies what should happen when a signal is emitted.
|
static | setvbuf(IntPtr, byte*, int, ulong) : intControl FILE stream buffering operations. |
static | setvbuf(IntPtr, IntPtr, int, ulong) : intControl FILE stream buffering. |
static | signal(Signum, SignalHandler) : SignalHandlerRegister a handler for a given signal. |
static | snprintf(System.Text.StringBuilder, string) : intPrint a string into a buffer. |
static | snprintf(System.Text.StringBuilder, string, params object[]) : intPrint a string into a buffer. |
static | snprintf(System.Text.StringBuilder, ulong, string) : intPrint a string into a buffer. |
static | snprintf(System.Text.StringBuilder, ulong, string, params object[]) : intPrint a string into a buffer. |
static | srand(uint)Initialize the random number generator. |
static | strerror(Errno) : stringGet error message string for 'errnum'. |
static | strlen(IntPtr) : ulongDocumentation for this section has not yet been entered. |
static | system(string) : intPass a command to the shell. |
static | tmpfile() : IntPtrCreate a temporary file. |
static | tmpnam() : stringGenerate a temporary file name. |
static | tmpnam(System.Text.StringBuilder) : stringGenerate a temporary file name. |
static | ungetc(int, IntPtr) : intUn-get character from input FILE stream. |