1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
/* Sputs.c: this function "puts" a string which Sgets can receive
* Authors: Charles E. Campbell, Jr.
* Terry McRoberts
* Copyright: Copyright (C) 1999-2005 Charles E. Campbell, Jr. {{{1
* Permission is hereby granted to use and distribute this code,
* with or without modifications, provided that this copyright
* notice is copied with it. Like anything else that's free,
* Sputs.c is provided *as is* and comes with no warranty
* of any kind, either expressed or implied. By using this
* software, you agree that in no event will the copyright
* holder be liable for any damages resulting from the use
* of this software.
* Date: Aug 22, 2005
*/
#include <stdio.h>
#include "sockets.h"
/* --------------------------------------------------------------------- */
/* Sputs: */
#ifdef __PROTOTYPE__
void Sputs(
const char *buf,
Socket *skt)
#else
void Sputs(
buf,
skt)
const char *buf;
Socket *skt;
#endif
{
/* write out buf and the null byte */
Swrite(skt,buf,strlen(buf)+1);
}
/* ---------------------------------------------------------------------
* vim: ts=4
*/
|