⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 systemoutputstream.c

📁 SUN官方的资料
💻 C
字号:
/* * @(#)SystemOutputStream.c	1.8 02/07/24 @(#) * * Copyright (c) 1999-2002 Sun Microsystems, Inc.  All rights reserved. * PROPRIETARY/CONFIDENTIAL * Use is subject to license terms. */#include <kni.h>/*========================================================================= * FUNCTION:      putchar(C)V (STATIC) * CLASS:         com/sun/midp/io/SystemOutputStream * TYPE:          static native function * OVERVIEW:      Print a byte to the stdout file * INTERFACE (operand stack manipulation): *   parameters:  <none> *   returns:     <nothing> *=======================================================================*/KNIEXPORT KNI_RETURNTYPE_VOIDJava_com_sun_midp_io_SystemOutputStream_putchar() {    jchar c = KNI_GetParameterAsChar(1);    putchar((char)c);    KNI_ReturnVoid();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -