Skip to content
Snippets Groups Projects
Commit b3d59d69 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

lib/generic: missing include guard, updated doc

parent 984fab96
Branches
Tags
No related merge requests found
......@@ -4,7 +4,6 @@
*/
/**
*
* @file map.h
* @brief A Crit-bit tree key-value map implementation.
*
......@@ -95,6 +94,8 @@ void map_clear(map_t *map);
/**
* Calls callback for all strings in map with the given prefix
* @param map
* @param prefix required string prefix (empty => all strings)
* @param callback callback parameters are (key, value, baton)
* @param baton passed uservalue
*/
......
......@@ -52,6 +52,8 @@
* @{
*/
#pragma once
#include <stdint.h>
#include <string.h>
#include "array.h"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment