代码搜索:MISC
找到约 10,000 项符合「MISC」的源代码
代码结果 10,000
www.eeworm.com/read/333328/12686713
txt misc.txt
www.eeworm.com/read/332129/12776849
c misc.c
/*
********************************************************************************
*
* LCD控制程序
*
* 不是很方便归类的部分都在这里
*
* 文件名 : MISC.C
* 设计
www.eeworm.com/read/144627/12779654
h misc.h
void *My_Malloc(long size);
void My_Error(char error_text[]);
void skiptoend(FILE *fp);
double My_Rand(void);
void My_Seed_Rand(void);
double My_Rand_Action_Selection(void);
void My_Seed_Ran
www.eeworm.com/read/144627/12779668
c misc.c
#include
#include
#include
#include "misc.h"
void *My_Malloc(long size)
{
void *ptr;
ptr=(void *)malloc(size);
if(!ptr)
{
My_Error("Out
www.eeworm.com/read/245632/12786786
c misc.c
#include
#include
void *xmalloc(size_t size)
{
void *ptr = (void *) malloc(size);
return ptr;
}
double mymax(double a, double b)
{
if (a > b)
return a;
return
www.eeworm.com/read/144431/12794919
h misc.h
/*
* Released under the terms of the GNU GPL v2.0.
*/
#ifndef MISC_H
#define MISC_H
struct qelem {
struct qelem *q_forw;
struct qelem *q_back;
};
/* stolen list stuff from Linux kernel */
#und
www.eeworm.com/read/331910/12801985
h misc.h
#ifndef __MISC_H__
#define __MISC_H__
#include
gchar *a_Misc_prepend_user_home(const char *file);
gchar *a_Misc_escape_chars(const gchar *str, gchar *esc_set);
gchar *a_Misc_stuff_chars(co
www.eeworm.com/read/331910/12802060
c misc.c
/*
* File: misc.c
*
* Copyright (C) 2000 Jorge Arellano Cid ,
* J鰎gen Viksell
*
* This program is free software; you can redistribute it a