📄 get_alarm.c
字号:
#ifndef lint#ifdef sccsstatic char sccsid[] = "@(#)get_alarm.c 1.1 92/07/30 Copyr 1988 Sun Micro";#endif#endif#include <stdio.h>/* * get_alarm.c * This program gets the WIN_ALARM env var. */main (){ char *wa_envstr; extern char *getenv(); if ( (wa_envstr = getenv ("WINDOW_ALARM")) == NULL ) { fprintf (stdout, "get_alarm: the WINDOW_ALARM environment variable is NULL.\n"); exit(1); } else fprintf(stdout, "WINDOW_ALARM=%s\n", wa_envstr); exit(0);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -