2014-02-02 17:25:53 +01:00
|
|
|
/****************************************************************************
|
2016-07-01 14:48:22 +02:00
|
|
|
* apps/include/system/cle.h
|
2014-02-02 17:25:53 +01:00
|
|
|
*
|
2021-06-11 08:28:21 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2014-02-02 17:25:53 +01:00
|
|
|
*
|
2021-06-11 08:28:21 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-02-02 17:25:53 +01:00
|
|
|
*
|
2021-06-11 08:28:21 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2014-02-02 17:25:53 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-07-01 14:48:22 +02:00
|
|
|
#ifndef __APPS_INCLUDE_SYSTEM_CLE_H
|
|
|
|
#define __APPS_INCLUDE_SYSTEM_CLE_H
|
2014-02-02 17:25:53 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYSTEM_CLE
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 15:25:06 +02:00
|
|
|
* Pre-processor Definitions
|
2014-02-02 17:25:53 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2021-11-14 19:39:35 +01:00
|
|
|
* Name: cle/cle_fd
|
2014-02-02 17:25:53 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* EMACS-like command line editor. This is actually more like readline
|
|
|
|
* than is the NuttX readline!
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2021-11-14 19:39:35 +01:00
|
|
|
int cle_fd(FAR char *line, FAR const char *prompt, uint16_t linelen,
|
|
|
|
int infd, int outfd);
|
|
|
|
|
|
|
|
#ifdef CONFIG_FILE_STREAM
|
2019-10-11 18:47:29 +02:00
|
|
|
int cle(FAR char *line, FAR const char *prompt, uint16_t linelen,
|
|
|
|
FAR FILE *instream, FAR FILE *outstream);
|
2021-11-14 19:39:35 +01:00
|
|
|
#endif
|
2014-02-02 17:25:53 +01:00
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CONFIG_SYSTEM_CLE */
|
2016-07-01 14:48:22 +02:00
|
|
|
#endif /* __APPS_INCLUDE_SYSTEM_CLE_H */
|