#include <stdio.h>#include <stdlib.h>#include <string.h>#include <ctype.h>#include "include/ift.h"Functions | |
| int | iftGet (IFT *ift, char *key) |
| int | iftGetNth (IFT *ift, char *key, int n) |
| int | iftFindNthKey (IFT *ift, char *str, int n) |
| int | iftFindNthValue (IFT *ift, char *str, int n) |
|
||||||||||||||||
|
Find the Nth item of IFT where the specified string is found in the key. Comparison is case sensitive.
|
|
||||||||||||||||
|
Find the Nth item of IFT where the specified string is found in the value. Comparison is case sensitive.
|
|
||||||||||||
|
Find the key in the IFT and return the index [0..keyNr-1]. Key is case insensitive.
|
|
||||||||||||||||
|
Find the Nth key with similar name in the IFT and return the index [0..keyNr-1]. Key is case insensitive.
|
1.3.9.1