Personal tools
You are here: Home Projects C++ Cfront releases Release 3.0.3 source lib string std_put.c
Document Actions

std_put.c

by Michael L Powell last modified 2007-01-26 03:22

Click here to get the file

Size 1.6 kB - File type text/plain

File contents

/*ident	"@(#) @(#)std_put.c	1.1.1.2" */
/******************************************************************************
*
* C++ Standard Library
*
* Copyright (c) 1996  Lucent Technologies.  All Rights Reserved.
*
* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF Lucent Technologies.
* The copyright notice above does not evidence any actual or
* intended publication of such source code.
*
******************************************************************************/

#include <iostream.h>
#include "std_string.h"
#ifdef NAMESPACES_LUCENT
namespace std {
#endif


/*
 *  The stream insertion operator has to deal with the field width
 *  stored in the stream object.
 */
ostream&
operator<<(ostream& oo, const string& r) {
#ifndef IOSTREAMH
    char *p = r.d->str;
    char *end = r.d->str + r.d->len;

    char c = *end;
    *end = '\0';
    while (p < end) {
	oo << p;
	while (*p) p++;
	if (p < end) {
	    oo.put((char)0);  /* write out embedded null */
	    p++;
	}
    }
    *end = c;
#else
    int fwidth = oo.width(0);	/* get the current "field width" setting */
    int len = r.d->len;		/* and the length of the string */

    int pad = fwidth - len;	/* this is the amount of padding needed */
    if (pad <= 0) {
	oo.write(r.d->str,r.d->len);
    }
    else {
	/*
	 * check if the padding goes before or after, default is before
	 */
	int leftjust = ( (oo.flags() & ios::left) != 0 );
	char fillchar = oo.fill();
	if (leftjust) {
	    oo.write(r.d->str,r.d->len);
	}
	for (; pad; pad--) {
	    oo.put(fillchar);
	}
	if (!leftjust) {
	    oo.write(r.d->str,r.d->len);
	}
    }
#endif

    return oo;
}
#ifdef NAMESPACES_LUCENT
}
#endif
« April 2024 »
Su Mo Tu We Th Fr Sa
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
 

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: