Move include/inifile.h to include/fsutils/inifile.h

This commit is contained in:
Gregory Nutt 2016-01-20 18:45:03 -06:00
parent 27a55f36d6
commit 64f484d71a
4 changed files with 7 additions and 7 deletions

View File

@ -34,7 +34,7 @@ Syntax
Programming Interfaces Programming Interfaces
====================== ======================
See apps/include/inifile.h for interfaces supported by the INI file parser. See apps/include/fsutils/inifile.h for interfaces supported by the INI file parser.
Test Program Test Program
============ ============

View File

@ -44,7 +44,7 @@
#include <string.h> #include <string.h>
#include <debug.h> #include <debug.h>
#include <apps/inifile.h> #include <apps/fsutils/inifile.h>
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions

View File

@ -49,7 +49,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <errno.h> #include <errno.h>
#include <apps/inifile.h> #include <apps/fsutils/inifile.h>
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* apps/include/inifile.h * apps/include/fsutils/inifile.h
* *
* Copyright (C) 2014 Gregory Nutt. All rights reserved. * Copyright (C) 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@ -33,8 +33,8 @@
* *
****************************************************************************/ ****************************************************************************/
#ifndef __APPS_INCLUDE_INIFILE_H #ifndef __APPS_INCLUDE_FSUTILS_INIFILE_H
#define __APPS_INCLUDE_INIFILE_H #define __APPS_INCLUDE_FSUTILS_INIFILE_H
/**************************************************************************** /****************************************************************************
* Included Files * Included Files
@ -135,4 +135,4 @@ void inifile_free_string(FAR char *value);
} }
#endif #endif
#endif /* __APPS_INCLUDE_INIFILE_H */ #endif /* __APPS_INCLUDE_FSUTILS_INIFILE_H */