Changeset 5819

Show
Ignore:
Timestamp:
03/14/10 12:48:19 (3 years ago)
Author:
blogic
Message:

rename uci->ucix, add license

Location:
luci2/libmbox
Files:
1 modified
2 moved

Legend:

Unmodified
Added
Removed
  • luci2/libmbox/Makefile

    r5817 r5819  
    77all: $(BINARY) 
    88 
    9 libmbox.so: uci.c blob.c hash.c 
     9libmbox.so: ucix.c blob.c hash.c 
    1010    $(CC) $(CFLAGS) -o $@ -shared -Wl,-soname,libmbox.so $^ 
    1111 
  • luci2/libmbox/ucix.c

    r5817 r5819  
     1/* 
     2 *   ucix 
     3 *   Copyright (C) 2010 John Crispin <blogic@openwrt.org> 
     4 *   Copyright (C) 2010 Steven Barth <steven@midlink.org> 
     5 * 
     6 *   This program is free software; you can redistribute it and/or modify 
     7 *   it under the terms of the GNU General Public License as published by 
     8 *   the Free Software Foundation; either version 2 of the License, or 
     9 *   (at your option) any later version. 
     10 * 
     11 *   This program is distributed in the hope that it will be useful, 
     12 *   but WITHOUT ANY WARRANTY; without even the implied warranty of 
     13 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     14 *   GNU General Public License for more details. 
     15 * 
     16 *   You should have received a copy of the GNU General Public License 
     17 *   along with this program; if not, write to the Free Software 
     18 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 
     19 * 
     20 */ 
     21 
    122#include <string.h> 
    223#include <stdlib.h> 
    324 
    4 #include "cbi.h" 
    5 #include "uci.h" 
     25#include "ucix.h" 
    626 
    727struct uci_ptr uci_ptr; 
  • luci2/libmbox/ucix.h

    r5817 r5819  
     1/* 
     2 *   ucix 
     3 *   Copyright (C) 2010 John Crispin <blogic@openwrt.org> 
     4 *   Copyright (C) 2010 Steven Barth <steven@midlink.org> 
     5 * 
     6 *   This program is free software; you can redistribute it and/or modify 
     7 *   it under the terms of the GNU General Public License as published by 
     8 *   the Free Software Foundation; either version 2 of the License, or 
     9 *   (at your option) any later version. 
     10 * 
     11 *   This program is distributed in the hope that it will be useful, 
     12 *   but WITHOUT ANY WARRANTY; without even the implied warranty of 
     13 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     14 *   GNU General Public License for more details. 
     15 * 
     16 *   You should have received a copy of the GNU General Public License 
     17 *   along with this program; if not, write to the Free Software 
     18 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. 
     19 * 
     20 */ 
     21 
    122#ifndef _UCI_H__ 
    223#define _UCI_H__