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

📄 lclnt1.c

📁 understanding unix/linux programming source code(bruce molay)
💻 C
字号:
/**************************************************************************** * lclnt1.c * License server client version 1 *  link with lclnt_funcs1.o dgram.o */#include <stdio.h>int main(int ac, char *av[]){	setup();	if (get_ticket() != 0 )		exit(0);		do_regular_work();	release_ticket();	shut_down();}/**************************************************************************** * do_regular_work  the main work of the application goes here */do_regular_work(){	printf("SuperSleep version 1.0 Running - Licensed Software\n");	sleep(10);	/* our patented sleep algorithm */}

⌨️ 快捷键说明

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