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

📄 timezone.c

📁 kaffe Java 解释器语言,源码,Java的子集系统,开放源代码
💻 C
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -