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

std_wput.c

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

Click here to get the file

Size 1.7 kB - File type text/plain

File contents

/*ident	"@(#) @(#)std_wput.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

#if (defined(_MSC_VER) && _MSC_VER < 1000) || defined(__TCPLUSPLUS__)
#define WSTRING wstring
#else
#define WSTRING wstring::traits_type
#endif

/*
 *  The stream insertion operator has to deal with the field width
 */
ostream&
operator<<(ostream& oo, const wstring& r) {
    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) {
	int i;
	wchar_t *p = r.d->str;
	for (i = 0; i < len; i++) {
	    WSTRING::char_out(oo, *p++);
	}
    }
    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) {
	    int i;
	    wchar_t *p = r.d->str;
	    for (i = 0; i < len; i++) {
		WSTRING::char_out(oo, *p++);
	    }
	}
	for (; pad; pad--) {
	    oo.put(fillchar);
	    oo.put(fillchar);
	}
	if (!leftjust) {
	    int i;
	    wchar_t *p = r.d->str;
	    for (i = 0; i < len; i++) {
		WSTRING::char_out(oo, *p++);
	    }
	}
    }

    return oo;
}
#ifdef NAMESPACES_LUCENT
}
#endif
« March 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
31
 

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: