|
MD5_Init(3) -- MD2, MD4, and MD5 hash functions
|
MD2, MD4, and MD5 are cryptographic hash functions with a 128 bit output. MD2(), MD4(), and MD5() compute the MD2, MD4, and MD5 message digest of the n bytes at d and place it in md (which must have s... |
MD5_Update(3) -- MD2, MD4, and MD5 hash functions
|
MD2, MD4, and MD5 are cryptographic hash functions with a 128 bit output. MD2(), MD4(), and MD5() compute the MD2, MD4, and MD5 message digest of the n bytes at d and place it in md (which must have s... |
|
memccpy(3) -- copy string until character found
|
The memccpy() function copies bytes from string src to string dst. If the character c (as converted to an unsigned char) occurs in the string src, the copy stops and a pointer to the byte after the co... |
memchr(3) -- locate byte in byte string
|
The memchr() function locates the first occurrence of c (converted to an unsigned char) in string b. |
memcmp(3) -- compare byte string
|
The memcmp() function compares byte string b1 against byte string b2. Both strings are assumed to be len bytes long. |
memcpy(3) -- copy bytes
|
The memcpy() function copies len bytes from buffer src to buffer dst. |
memmove(3) -- copy bytes
|
The memmove() function copies len bytes from buffer src to buffer dst. The two buffers may overlap; the copy is always done in a non-destructive manner. |
memset(3) -- write a byte to byte string
|
The memset() function writes len bytes of value c (converted to an unsigned char) to the string b. |
menu(3) -- curses extension for programming menus
|
The menu library provides terminal-independent facilities for composing menu systems on character-cell terminals. The library includes: item routines, which create and modify menu items; and menu rout... |
menu_attributes(3) -- color and attribute control for menus
|
The function set_menu_fore sets the foreground attribute of menu. This is the highlight used for selected menu items. menu_fore returns the foreground attribute. The default is A_STANDOUT. The functio... |
menu_back(3) -- color and attribute control for menus
|
The function set_menu_fore sets the foreground attribute of menu. This is the highlight used for selected menu items. menu_fore returns the foreground attribute. The default is A_STANDOUT. The functio... |
menu_cursor(3) -- position a menu's cursor
|
The function pos_menu_cursor restores the cursor to the current position associated with the menu's selected item. This is useful after curses routines have been called to do screen-painting in respo... |
menu_driver(3) -- command-processing loop of the menu system
|
Once a menu has been posted (displayed), you should funnel input events to it through menu_driver. This routine has three major input cases; either the input is a menu navigation request, it's a prin... |
menu_fore(3) -- color and attribute control for menus
|
The function set_menu_fore sets the foreground attribute of menu. This is the highlight used for selected menu items. menu_fore returns the foreground attribute. The default is A_STANDOUT. The functio... |
menu_format(3) -- set and get menu sizes
|
The function set_menu_format sets the maximum display size of the given menu. If this size is too small to display all menu items, the menu will be made scrollable. If this size is larger than the men... |