17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 57257d1b4Sraf * Common Development and Distribution License (the "License"). 67257d1b4Sraf * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217257d1b4Sraf 227c478bd9Sstevel@tonic-gate /* 237257d1b4Sraf * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 27*4297a3b0SGarrett D'Amore /* 28*4297a3b0SGarrett D'Amore * Copyright 2010 Nexenta Systems, Inc. All rights reserved. 29*4297a3b0SGarrett D'Amore * Use is subject to license terms. 30*4297a3b0SGarrett D'Amore */ 317c478bd9Sstevel@tonic-gate 327257d1b4Sraf #include "lint.h" 337c478bd9Sstevel@tonic-gate #include "mtlib.h" 347c478bd9Sstevel@tonic-gate #include "mbstatet.h" 357c478bd9Sstevel@tonic-gate #include "file64.h" 367c478bd9Sstevel@tonic-gate #include <sys/types.h> 377c478bd9Sstevel@tonic-gate #include <stdio.h> 387c478bd9Sstevel@tonic-gate #include <wchar.h> 397c478bd9Sstevel@tonic-gate #include <thread.h> 407c478bd9Sstevel@tonic-gate #include <synch.h> 417c478bd9Sstevel@tonic-gate #include <stdlib.h> 427c478bd9Sstevel@tonic-gate #include <string.h> 437c478bd9Sstevel@tonic-gate #include "libc.h" 447c478bd9Sstevel@tonic-gate #include "stdiom.h" 457c478bd9Sstevel@tonic-gate #include "mse.h" 467c478bd9Sstevel@tonic-gate 477c478bd9Sstevel@tonic-gate /* 487c478bd9Sstevel@tonic-gate * DESCRIPTION: 497c478bd9Sstevel@tonic-gate * This function/macro gets the orientation bound to the specified iop. 507c478bd9Sstevel@tonic-gate * 517c478bd9Sstevel@tonic-gate * RETURNS: 527c478bd9Sstevel@tonic-gate * _WC_MODE if iop has been bound to Wide orientation 537c478bd9Sstevel@tonic-gate * _BYTE_MODE if iop has been bound to Byte orientation 547c478bd9Sstevel@tonic-gate * _NO_MODE if iop has been bound to neither Wide nor Byte 557c478bd9Sstevel@tonic-gate */ 567c478bd9Sstevel@tonic-gate _IOP_orientation_t 577c478bd9Sstevel@tonic-gate _getorientation(FILE *iop) 587c478bd9Sstevel@tonic-gate { 597c478bd9Sstevel@tonic-gate if (GET_BYTE_MODE(iop)) 607c478bd9Sstevel@tonic-gate return (_BYTE_MODE); 617c478bd9Sstevel@tonic-gate else if (GET_WC_MODE(iop)) 627c478bd9Sstevel@tonic-gate return (_WC_MODE); 637c478bd9Sstevel@tonic-gate 647c478bd9Sstevel@tonic-gate return (_NO_MODE); 657c478bd9Sstevel@tonic-gate } 667c478bd9Sstevel@tonic-gate 677c478bd9Sstevel@tonic-gate /* 687c478bd9Sstevel@tonic-gate * DESCRIPTION: 697c478bd9Sstevel@tonic-gate * This function/macro sets the orientation to the specified iop. 707c478bd9Sstevel@tonic-gate * 717c478bd9Sstevel@tonic-gate * INPUT: 727c478bd9Sstevel@tonic-gate * flag may take one of the following: 737c478bd9Sstevel@tonic-gate * _WC_MODE Wide orientation 747c478bd9Sstevel@tonic-gate * _BYTE_MODE Byte orientation 757c478bd9Sstevel@tonic-gate * _NO_MODE Unoriented 767c478bd9Sstevel@tonic-gate */ 777c478bd9Sstevel@tonic-gate void 787c478bd9Sstevel@tonic-gate _setorientation(FILE *iop, _IOP_orientation_t mode) 797c478bd9Sstevel@tonic-gate { 807c478bd9Sstevel@tonic-gate switch (mode) { 817c478bd9Sstevel@tonic-gate case _NO_MODE: 827c478bd9Sstevel@tonic-gate CLEAR_BYTE_MODE(iop); 837c478bd9Sstevel@tonic-gate CLEAR_WC_MODE(iop); 847c478bd9Sstevel@tonic-gate break; 857c478bd9Sstevel@tonic-gate case _BYTE_MODE: 867c478bd9Sstevel@tonic-gate CLEAR_WC_MODE(iop); 877c478bd9Sstevel@tonic-gate SET_BYTE_MODE(iop); 887c478bd9Sstevel@tonic-gate break; 897c478bd9Sstevel@tonic-gate case _WC_MODE: 907c478bd9Sstevel@tonic-gate CLEAR_BYTE_MODE(iop); 917c478bd9Sstevel@tonic-gate SET_WC_MODE(iop); 927c478bd9Sstevel@tonic-gate break; 937c478bd9Sstevel@tonic-gate } 947c478bd9Sstevel@tonic-gate } 95