source: rtems/c/src/tests/sptests/sp13/putbuff.c @ 4b374f36

4.104.114.84.95
Last change on this file since 4b374f36 was 4b374f36, checked in by Joel Sherrill <joel.sherrill@…>, on 08/17/95 at 19:36:43

maximum number of messages removed and include statement cleanup

  • Property mode set to 100644
File size: 725 bytes
Line 
1/*  Put_buffer
2 *
3 *  This test routine prints the given buffer.
4 *  buffer.
5 *
6 *  Input parameters:
7 *    buffer - pointer to message buffer to be printer
8 *
9 *  Output parameters:  NONE
10 *
11 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
12 *  On-Line Applications Research Corporation (OAR).
13 *  All rights assigned to U.S. Government, 1994.
14 *
15 *  This material may be reproduced by or for the U.S. Government pursuant
16 *  to the copyright license under the clause at DFARS 252.227-7013.  This
17 *  notice must appear in all copies of this file and its derivatives.
18 *
19 *  putbuff.c,v 1.2 1995/05/31 17:10:15 joel Exp
20 */
21
22#include "system.h"
23
24void Put_buffer(
25  long *buffer
26)
27{
28  printf( "%16s", (char *)buffer );
29}
Note: See TracBrowser for help on using the repository browser.