Covers the low level input and output relating to memory and files. In addition to memory and file handling, io has typically been a place holder for new functionality.
More...
Functions |
| void | io_command_line_execution_set (void) |
| n_int | io_command_line_execution (void) |
| void | io_entry_execution (n_int argc, n_string *argv) |
| void | io_copy (n_byte *from, n_byte *to, n_uint number) |
| void * | io_new (n_uint bytes) |
| void | io_free (void **ptr) |
| void * | io_new_range (n_uint memory_min, n_uint *memory_allocated) |
| void | io_lower (n_string value, n_int length) |
| n_file * | io_file_new (void) |
| void | io_file_free (n_file **file) |
| void | io_int_to_bytes (n_int value, n_byte *bytes) |
| n_int | io_bytes_to_int (n_byte *bytes) |
| n_int | io_disk_read (n_file *local_file, n_string file_name) |
| n_int | io_disk_write (n_file *local_file, n_string file_name) |
| n_int | io_disk_check (n_constant_string file_name) |
| n_int | io_read_bin (n_file *fil, n_byte *local_byte) |
| n_string * | io_tab_delimit_to_n_string_ptr (n_file *tab_file, n_int *size_value, n_int *row_value) |
| n_int | io_read_byte4 (n_file *fil, n_uint *actual_value, n_byte *final_char) |
| n_int | io_number (n_string number_string, n_int *actual_value, n_int *decimal_divisor) |
| void | io_whitespace (n_file *input) |
| n_int | io_file_write (n_file *fil, n_byte byte) |
| void | io_file_reused (n_file *fil) |
| n_int | io_length (n_string value, n_int max) |
| n_int | io_find (n_string check, n_int from, n_int max, n_string value_find, n_int value_find_length) |
| n_int | io_write (n_file *fil, n_constant_string ch, n_byte new_line) |
| n_int | io_writenumber (n_file *fil, n_int loc_val, n_uint numer, n_uint denom) |
| n_int | io_writenum (n_file *fil, n_int loc_val, n_byte ekind, n_byte new_line) |
| n_int | io_command (n_file *fil, const noble_file_entry *commands) |
| n_int | io_find_size_data (noble_file_entry *commands) |
| n_int | io_read_data (n_file *fil, n_byte2 command, n_byte *data_read) |
| void | io_output_contents (n_file *file) |
| n_int | io_read_buff (n_file *fil, n_byte *data, const noble_file_entry *commands) |
| n_int | io_write_buff (n_file *fil, void *data, const noble_file_entry *commands, n_byte command_num, n_file_specific *func) |
| n_int | io_write_csv (n_file *fil, n_byte *data, const noble_file_entry *commands, n_byte command_num, n_byte initial) |
| void | io_erase (n_byte *buf_offscr, n_uint nestop) |
| void | io_search_file_format (const noble_file_entry *format, n_string compare) |
| void | io_audit_file (const noble_file_entry *format, n_byte section_to_audit) |
| void | io_three_string_combination (n_string output, n_string first, n_string second, n_string third, n_int count) |
| void | io_time_to_string (n_string value, n_int minutes, n_int days) |
| void | io_offset (n_byte *start, n_byte *point, n_string text) |
| void | io_help_line (noble_console_command *specific, n_console_output output_function) |
| n_int | io_help (void *ptr, n_string response, n_console_output output_function) |
| n_int | io_quit (void *ptr, n_string response, n_console_output output_function) |
| n_string | io_console_entry_clean (n_string string, n_int length) |
| n_string | io_console_entry (n_string string, n_int length) |
| void | io_console_out (n_constant_string value) |
| void | io_console_quit (void) |
| n_int | io_console (void *ptr, noble_console_command *commands, n_console_input input_function, n_console_output output_function) |
| void | io_string_write (n_string dest, n_string insert, n_int *pos) |
| n_int | io_apescript_error (void *ptr, AE_ENUM value) |
| n_file * | io_file_ready (n_int entry, n_file *file) |
| void | io_file_cleanup (n_int *entry, n_file **file) |
| void | io_file_writeon (n_int *entry, n_file **file, n_byte blocked_write) |
| void | io_file_writeoff (n_int *entry, n_file *file) |
| void | io_file_string (n_int entry, n_file *file, n_constant_string string) |
Covers the low level input and output relating to memory and files. In addition to memory and file handling, io has typically been a place holder for new functionality.
Definition in file io.c.