The members of Mono.Unix.Native.Stdlib are listed below.
See Also: Inherited members from System.Object
static readonly | _IOFBF | int (0). Fully Buffered. |
static readonly | _IOLBF | int (1). Line buffered. |
static readonly | _IONBF | int (2). Specify unbuffered FILE streams. |
static readonly | BUFSIZ | int (8192). Buffer size. |
static readonly | EOF | int (-1). End Of File. |
static readonly | EXIT_FAILURE | int (1). Failure program exit status. |
static readonly | EXIT_SUCCESS | int (0). Success program exit status. |
static readonly | FILENAME_MAX | int (4096). Maximum filename length. |
static readonly | FOPEN_MAX | int (16). Maximum number of FILE pointer that may be open at one time. |
static readonly | L_tmpnam | int (20). The number of characters filled by Stdlib.tmpnam(3). |
static readonly | MB_CUR_MAX | int (6). Documentation for this section has not yet been entered. |
static readonly | RAND_MAX | int (2147483647). The maximum value returned by Stdlib.rand(3). |
static readonly | SIG_DFL | SignalHandler. Default signal behavior. |
static readonly | SIG_ERR | SignalHandler. Error signal. |
static readonly | SIG_IGN | SignalHandler. Ignore the signal. |
static readonly | stderr | IntPtr. Standard error FILE stream. |
static readonly | stdin | IntPtr. Standard input FILE stream. |
static readonly | stdout | IntPtr. Standard output FILE stream. |
static readonly | TMP_MAX | int (238328). Maximum number of times Stdlib.tmpnam(3) will return different strings. |
static | _Exit(int)Perform normal program termination. | |
static | abort()Cause abnormal program termination. | |
static | calloc(ulong, ulong)Allocate and zero-fill memory. | |
static | clearerr(IntPtr)Clear FILE stream status. | |
static | exit(int)Terminates the process that calls the function with the exit status status. | |
static | fclose(IntPtr)Close a FILE stream. | |
static | feof(IntPtr)Test end-of-file indicator for the FILE stream. | |
static | ferror(IntPtr)Tests the error indicator for the FILE stream. | |
static | fflush(IntPtr)Flush a FILE stream. | |
static | fgetc(IntPtr)Get next character from a FILE input stream. | |
static | fgetpos(IntPtr, FilePosition)Retrieve the current file position of a FILE stream. | |
static | fgets(System.Text.StringBuilder, IntPtr)Read a line from a FILE stream. | |
static | fgets(System.Text.StringBuilder, int, IntPtr)Read a line from a FILE stream. | |
static | fopen(string, string)Open a file and associate a FILE stream with it. | |
static | fprintf(IntPtr, string)Print to a FILE stream. | |
static | fprintf(IntPtr, string, params object[])Print to a FILE stream. | |
static | fputc(int, IntPtr)Output a character to a FILE stream. | |
static | fputs(string, IntPtr)Output a line to a FILE stream. | |
static | fread(byte[], IntPtr)Read from a binary stream. | |
static | fread(byte[], ulong, ulong, IntPtr)Read from a binary stream. | |
static | fread(IntPtr, ulong, ulong, IntPtr)Read from a binary stream. | |
static | fread(void*, ulong, ulong, IntPtr)Read from a binary stream. | |
static | free(IntPtr)Free allocated memory. | |
static | freopen(string, string, IntPtr)Reopen a FILE stream. | |
static | fseek(IntPtr, long, SeekFlags)Set file position for a FILE stream. | |
static | fsetpos(IntPtr, FilePosition)Sets the current file position of a FILE stream. | |
static | ftell(IntPtr)Get current file position for FILE stream. | |
static | fwrite(byte[], IntPtr)Write to a binary FILE stream. | |
static | fwrite(byte[], ulong, ulong, IntPtr)Write to a binary FILE stream. | |
static | fwrite(IntPtr, ulong, ulong, IntPtr)Write to a binary FILE stream. | |
static | fwrite(void*, ulong, ulong, IntPtr)Write to a binary FILE stream. | |
static | getc(IntPtr)Get next character from a FILE input stream. | |
static | getchar()Get next character from standard input. | |
static | getenv(string)Read an environment variable. | |
static | GetLastError()Reads and translates errno. | |
static | malloc(ulong)Allocate memory. | |
static | perror(string)Print an error message to Stdlib.stderr. | |
static | printf(string)Prints a message on Stdlib.stdout. | |
static | printf(string, params object[])Prints a message on Stdlib.stdout. | |
static | putc(int, IntPtr)Output a character to a FILE stream. | |
static | putchar(int)Output a character to a Stdlib.stdout. | |
static | puts(string)Output a line to Stdlib.stdout. | |
static | raise(RealTimeSignum)Send a realtime signal to the current process. | |
static | raise(Signum)Send a signal to the current process. | |
static | rand()Generates a random number. | |
static | realloc(IntPtr, ulong)Reallocate a memory block. | |
static | remove(string)Remove a directory entry. | |
static | rename(string, string)Rename oldpath to newpath. | |
static | rewind(IntPtr)Set the file position indicator of the FILE stream to the beginning of the file. | |
static | setbuf(IntPtr, byte*)Control FILE stream buffering operations. | |
static | setbuf(IntPtr, IntPtr)Control FILE stream buffering operations. | |
static | SetSignalAction(RealTimeSignum, SignalAction)Specifies what should happen when a signal is emitted. | |
static | SetSignalAction(Signum, SignalAction)Specifies what should happen when a signal is emitted. | |
static | setvbuf(IntPtr, byte*, int, ulong)Control FILE stream buffering operations. | |
static | setvbuf(IntPtr, IntPtr, int, ulong)Control FILE stream buffering. | |
static | signal(Signum, SignalHandler)Register a handler for a given signal. | |
static | snprintf(System.Text.StringBuilder, string)Print a string into a buffer. | |
static | snprintf(System.Text.StringBuilder, string, params object[])Print a string into a buffer. | |
static | snprintf(System.Text.StringBuilder, ulong, string)Print a string into a buffer. | |
static | snprintf(System.Text.StringBuilder, ulong, string, params object[])Print a string into a buffer. | |
static | srand(uint)Initialize the random number generator. | |
static | strerror(Errno)Get error message string for 'errnum'. | |
static | strlen(IntPtr)Documentation for this section has not yet been entered. | |
static | system(string)Pass a command to the shell. | |
static | tmpfile()Create a temporary file. | |
static | tmpnam()Generate a temporary file name. | |
static | tmpnam(System.Text.StringBuilder)Generate a temporary file name. | |
static | ungetc(int, IntPtr)Un-get character from input FILE stream. | |
static | SetLastError(Errno)Writes errno. | |