875ed46ddf62e96291ea6d0651aa4d61b2c70773
[cacao.git] / src / native / vm / cldc1.1 / com_sun_cldchi_io_ConsoleOutputStream.c
1 /* src/native/vm/cldc1.1/com_sun_cldchi_io_ConsoleOutputStream.c
2
3    Copyright (C) 2006, 2007 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    $Id: java_lang_VMRuntime.c 5900 2006-11-04 17:30:44Z michi $
26
27 */
28
29
30 #include "config.h"
31
32 #include <stdio.h>
33
34 #include "vm/types.h"
35
36 #include "native/jni.h"
37 #include "native/native.h"
38
39 #include "native/include/com_sun_cldchi_io_ConsoleOutputStream.h"
40
41
42 /* native methods implemented by this file ************************************/
43  
44 static JNINativeMethod methods[] = {
45         { "write", "(I)V", (void *) (ptrint) &Java_com_sun_cldchi_io_ConsoleOutputStream_write },
46 };
47
48  
49 /* _Jv_com_sun_cldchi_io_ConsoleOutputStream_init ******************************
50  
51    Register native functions.
52  
53 *******************************************************************************/
54  
55 void _Jv_com_sun_cldchi_io_ConsoleOutputStream_init(void)
56 {
57         utf *u;
58  
59         u = utf_new_char("com/sun/cldchi/io/ConsoleOutputStream");
60  
61         native_method_register(u, methods, NATIVE_METHODS_COUNT);
62 }
63
64
65 /*
66  * Class:     com/sun/cldchi/io/ConsoleOutputStream
67  * Method:    write
68  * Signature: (I)V
69  */
70 JNIEXPORT void JNICALL Java_com_sun_cldchi_io_ConsoleOutputStream_write(JNIEnv *env, com_sun_cldchi_io_ConsoleOutputStream *this, s4 c)
71 {
72         (void) fputc(c, stdout);
73 }
74
75
76 /*
77  * These are local overrides for various environment variables in Emacs.
78  * Please do not remove this and leave it at the end of the file, where
79  * Emacs will automagically detect them.
80  * ---------------------------------------------------------------------
81  * Local variables:
82  * mode: c
83  * indent-tabs-mode: t
84  * c-basic-offset: 4
85  * tab-width: 4
86  * End:
87  * vim:noexpandtab:sw=4:ts=4:
88  */