Comments added.

FossilOrigin-Name: 755fe180f0bb6045fa6969a12ac86f5d47cf744add2b173293fecd83c2a0056a
This commit is contained in:
7u83@mail.ru 2015-05-01 17:51:48 +00:00
parent 0c1c1594ac
commit 773122c671
1 changed files with 25 additions and 0 deletions

View File

@ -1,3 +1,27 @@
/*
This file is part of libcapwap.
libcapwap is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
libcapwap 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
*/
/**
*@file
*@Implementation of mavl_create
*@addtogroup Mavl
*@{
*/
#include "mavl.h"
/**
@ -19,4 +43,5 @@ struct mavl *mavl_create(int (*cmp) (const void *, const void *),
return t;
}
/**@}*/