forked from Imagelibrary/rtems
* libmisc/Makefile.am, libmisc/shell/cmd_help.c, libmisc/shell/cmds.c, libmisc/shell/internal.h, libmisc/shell/shell.c, libmisc/shell/shell.h, libmisc/shell/shellconfig.h: Command set processing now separated from main command loop. Addition of user commands and aliases tested. Monitor registration now explicit. * libmisc/shell/shell_cmdset.c, libmisc/shell/shell_makeargs.c, libmisc/shell/write_file.c: New files.
40 lines
575 B
C
40 lines
575 B
C
/*
|
|
*
|
|
* Write buffer to a file
|
|
*
|
|
* Author:
|
|
*
|
|
* WORK: fernando.ruiz@ctv.es
|
|
* HOME: correo@fernando-ruiz.com
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
void write_file(
|
|
char *name,
|
|
char * content
|
|
)
|
|
{
|
|
FILE * fd;
|
|
|
|
fd = fopen(name,"w");
|
|
if (fd) {
|
|
fwrite(content,1,strlen(content),fd);
|
|
fclose(fd);
|
|
}
|
|
}
|
|
|
|
|