String auto-completion data. More...
#include "config.h"
#include <stdbool.h>
Go to the source code of this file.
Data Structures | |
struct | CompletionData |
State data for auto-completion. More... | |
Functions | |
void | completion_data_free (struct CompletionData **ptr) |
Free the Completion Data. | |
void | completion_data_free_match_strings (struct CompletionData *cd) |
Free the Completion strings. | |
struct CompletionData * | completion_data_new (void) |
Create new Completion Data. | |
void | completion_data_reset (struct CompletionData *cd) |
Wipe the stored Completion Data. | |
String auto-completion data.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file data.h.
void completion_data_free | ( | struct CompletionData ** | ptr | ) |
Free the Completion Data.
ptr | CompletionData to free |
Definition at line 53 of file data.c.
void completion_data_free_match_strings | ( | struct CompletionData * | cd | ) |
struct CompletionData * completion_data_new | ( | void | ) |
Create new Completion Data.
ptr | New Completion Data |
Definition at line 71 of file data.c.
void completion_data_reset | ( | struct CompletionData * | cd | ) |
Wipe the stored Completion Data.
cd | Completion Data |
Definition at line 85 of file data.c.