freebsd-dev/sys/boot/ficl/ficlstring.c
Daniel C. Sobral 49acc8fe50 Bring in ficl 2.05.
This version has a step debugger, which now completely replaces the
old trace feature. Also, we moved all of the FreeBSD-specific MI
code to loader.c, reducing the diff between this and the official
FICL distribution.
2001-04-29 02:36:36 +00:00

30 lines
763 B
C

/*******************************************************************
** f i c l s t r i n g . c
** Forth Inspired Command Language
** ANS STRING words plus ficl extras for c-string class
** Author: John Sadler (john_sadler@alum.mit.edu)
** Created: 2 June 2000
**
*******************************************************************/
/* $FreeBSD$ */
#ifdef TESTMAIN
#include <ctype.h>
#else
#include <stand.h>
#endif
#include <string.h>
#include "ficl.h"
/**************************************************************************
f o r m a t
** ( params... fmt-addr fmt-u dest-addr dest-u -- dest-addr dest-u )
**************************************************************************/
void ficlStrFormat(FICL_VM *pVM)
{
return;
}