timezone.c

来自「kaffe Java 解释器语言,源码,Java的子集系统,开放源代码」· C语言 代码 · 共 30 行

C
30
字号
/* * java.util.TimeZone.c * * Copyright (c) 2003 *      Kaffe's team. * * See the file "license.terms" for information on usage and redistribution * of this file. */#include "config.h"#include "config-std.h"#include <native.h>#include "java_util_TimeZone.h"struct Hjava_lang_String*java_util_TimeZone_getDefaultTimeZoneId(void){#ifdef HAVE_TIME_H	static int called_tzset = 0;	if (!called_tzset) 	{	  tzset();	}	return stringC2Java(tzname[0]);#else	return NULL;#endif}

⌨️ 快捷键说明

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