blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 268 | content_id stringlengths 40 40 | detected_licenses listlengths 0 58 | license_type stringclasses 2
values | repo_name stringlengths 5 118 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 816
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 2.31k 677M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 151
values | src_encoding stringclasses 33
values | language stringclasses 1
value | is_vendor bool 2
classes | is_generated bool 2
classes | length_bytes int64 3 10.3M | extension stringclasses 119
values | content stringlengths 3 10.3M | authors listlengths 1 1 | author_id stringlengths 0 228 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e25c2446e59fc35d6ed9336281fbb058e5d315b1 | 864a5976cd5780be91c76d58a695353d42c69380 | /Linked_List.c | 1bbab5d6640afacf415ee0d8d4b2beacb713d716 | [] | no_license | BrainofCoder/Algorithms | 7344bdcd9b0a4bbbd404331b4b7f0b016423e49f | 6bf383a9bab9d0f9791a3827bcd9d0a05571d447 | refs/heads/master | 2021-01-02T09:40:29.115556 | 2017-08-24T03:34:41 | 2017-08-24T03:34:41 | 99,275,606 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,403 | c | #include<stdio.h> // printf
#include<stdlib.h> // malloc
struct Node
{
int data;
struct Node *next;
};
push_front(struct Node **head, int v)
{
struct Node *new_node=(struct Node *)malloc(sizeof(struct Node));
new_node->data=v;
new_node->next=*head;
*head=new_node;
}
push_back(str... | [
"noreply@github.com"
] | BrainofCoder.noreply@github.com |
78962346c681dfce4e1ba3c4cc12aaa86cd7bbc7 | 8d922c678badf37ba7e3239c2df13b9b5442ef18 | /FileIO/src/read_reverse_write.c | 7f5ba29e5fd12b52a88aa1da2141e5ccfff8a926 | [] | no_license | huseenS/CP341 | ab5274ac073cf9adee2759fe2cee63a4c18c61f7 | 7e033db5c1c883b22cd0c972ce3d145dc325207a | refs/heads/master | 2021-07-07T04:45:38.489642 | 2017-10-05T23:33:43 | 2017-10-05T23:33:43 | 104,792,445 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 773 | c | /*
* read_reverse_write.c
*
* Created on: Sep 29, 2017
* Author: Huseen Sufi
*/
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char**argv) {
FILE* f;
int e; //error code returned
int b; //bytes actually read--in this case chars are one byte big
char* in_buf = malloc(sizeof(char)*100); //bre... | [
"huseensufi@gmail.com"
] | huseensufi@gmail.com |
64583cad82884a00336ce9c068b56658e3aa5f6e | b4521a5e1b668bed9f253d222092313895753da5 | /recommenders/bayesiandiversity/sparsesvd-0.1.8/sparsesvdmodule.c | f934fe749e0b9f2bfc1276afd17fd41af6b44a45 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | Hybbon/era-scripts | 0b3bd41e76c11305803a193e8aa9830695285a1e | 405e8e77787d0ed641d9e31f5c4ac59ca7ecfd37 | refs/heads/master | 2021-03-19T14:25:49.913508 | 2017-12-12T16:46:39 | 2017-12-12T16:46:39 | 72,033,547 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,921 | c |
#include <Python.h>
#include <numpy/arrayobject.h>
#include "SVDLIBC/svdlib.h"
static PyArrayObject *createPyArray2d(double* data, int rows, long cols) {
npy_intp dims[2];
dims[0] = (npy_intp) rows;
dims[1] = (npy_intp) cols;
PyArrayObject* pyArray = (PyArrayObject*) PyArray_SimpleNewFromData(2, di... | [
"blek.net@gmail.com"
] | blek.net@gmail.com |
8bfd1ac9bf43d147941a9c620770acfc9ae29434 | cb8c337a790b62905ad3b30f7891a4dff0ae7b6d | /st-ericsson/connectivity/lbs/asn1/lpp_asn1/incl/LPP_ResponseTime.h | 8877fcb5e717deb0b25680412cc65d9f70003f3f | [
"BSD-2-Clause"
] | permissive | CustomROMs/android_vendor | 67a2a096bfaa805d47e7d72b0c7a0d7e4830fa31 | 295e660547846f90ac7ebe42a952e613dbe1b2c3 | refs/heads/master | 2020-04-27T15:01:52.612258 | 2019-03-11T13:26:23 | 2019-03-12T11:23:02 | 174,429,381 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,583 | h | /*
* LPP_ResponseTime.h
*
* Copyright (C) ST-Ericsson SA 2010. All rights reserved.
* Author: sunilsatish.rao@stericsson.com for ST-Ericsson.
* License terms: Redistribution and modifications are permitted subject to BSD license.
*
* Redistribution and use in source and binary forms, with or without
* m... | [
"xiangxin19960319@gmail.com"
] | xiangxin19960319@gmail.com |
25be7d4404de3e7be1bea5aa45230e510c2c45fa | 4220ef76ca6b95cd7795ec4109b1f101d51cbfda | /Patch 1.61/postrc_epsilon4.c | 65e4e4588b213e345cd3ad792f95c8c0ecce8fc9 | [] | no_license | Seanghost117/GTA-Decompiled-Scripts | 3a7ee63775444dd1450959b1edad54f7d8a1fa11 | 88adbb8b9b4ca585b43afaa821a7008a7b5c4acd | refs/heads/master | 2023-01-24T19:58:42.625633 | 2023-01-23T00:47:47 | 2023-01-23T00:47:47 | 227,721,058 | 4 | 6 | null | null | null | null | UTF-8 | C | false | false | 20,690 | c | #region Local Var
var uLocal_0 = 0;
var uLocal_1 = 0;
int iLocal_2 = 0;
int iLocal_3 = 0;
int iLocal_4 = 0;
int iLocal_5 = 0;
int iLocal_6 = 0;
int iLocal_7 = 0;
int iLocal_8 = 0;
int iLocal_9 = 0;
int iLocal_10 = 0;
int iLocal_11 = 0;
var uLocal_12 = 0;
var uLocal_13 = 0;
float fLocal_14 = 0f;
var uLoc... | [
"36561158+Seanghost117@users.noreply.github.com"
] | 36561158+Seanghost117@users.noreply.github.com |
02d583aed64367a2ba67e9237db0bb5f2f489b49 | 5e412eeab4b0cc8c6c57378ffbd6111027e7073e | /GD32E103C8T6/GD32E10x_Firmware_Library/Examples/USBFS/USB_Device/msc_cdrom/src/app.c | e4a66ab9946d4c3f922ba167aa7a5dfa2db88eee | [
"BSD-3-Clause"
] | permissive | sevencheng798/PulseDetector | c98d46805cccd4c9151ae1345f58ad0a2028dcd3 | a13bf799083487d713b996b5f4721320e7541b2b | refs/heads/master | 2023-09-03T20:03:40.151333 | 2021-03-03T03:32:12 | 2021-03-03T03:32:12 | 343,982,972 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,457 | c | /*!
\file main.c
\brief USB main routine for MSC device(Udisk)
\version 2020-08-05, V2.0.0, firmware for GD32E10x
*/
/*
Copyright (c) 2020, GigaDevice Semiconductor Inc.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that ... | [
"djzheng@wisepoll.com.cn"
] | djzheng@wisepoll.com.cn |
0da7d413c8c07f75af40470fd042c12086d78451 | 9032e067f51c49057bce759fab6a97a6d0889ebc | /visualizer/libft/ft_putstr_fd.c | b259efee18e48214d0a2e2a45c6823222959d08f | [] | no_license | konstantikk/filler | fd8c5ff098295bcfacf5126644b5fbef811c7047 | 71e5fed8dcbdac800712dcd2c6627a95f7966664 | refs/heads/master | 2021-07-11T17:51:02.982849 | 2019-08-07T10:05:21 | 2019-08-07T10:05:21 | 179,966,708 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,006 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: ... | [
"jziemann@at-j4.21-school.ru"
] | jziemann@at-j4.21-school.ru |
32dcbd499f53ac5416ea4aada65e0a9d57ffe848 | ca6cb5b17247859fe610cbb85672adeb71917438 | /src/hook-sendto.h | f7abd802a65c18b698712f0667e9abff05521574 | [
"ISC"
] | permissive | tomjohndon/6Jack | 8ccf8b377a641eaa0c98a5c833991a81f668686e | bc3d41c565666635f0d3cf1717cbac00058cb62f | refs/heads/master | 2020-06-23T08:42:18.141428 | 2018-12-31T18:48:00 | 2019-01-01T18:48:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 676 | h |
#ifndef __HOOK_CONNECT_SENDTO__H__
#define __HOOK_CONNECT_SENDTO__H__ 1
DLL_PUBLIC ssize_t INTERPOSE(sendto)(int fd, const void *buf, size_t nbyte,
int flags,
const struct sockaddr *sa_remote,
socklen_t sa_r... | [
"github@pureftpd.org"
] | github@pureftpd.org |
61fbc2964961a3d7b5910b0a6114aefaac169ff5 | a1cae92e3015bdde25509af429316d01764469b4 | /C/ubuntu/src/kernel/OS_CORE/schedule/os_schedule.c | 23f4b41e218b427eed4275d0cef2219699b121c9 | [
"Apache-2.0"
] | permissive | kaka555/KAKAOS | d0c88c6e1837b5b4ac91e1e9ef1cf94e27fb730d | 67426c8dfd9010b92831113728e109fbb1613615 | refs/heads/master | 2021-07-10T15:41:42.350012 | 2020-07-19T09:51:14 | 2020-07-19T09:51:14 | 171,780,132 | 8 | 0 | Apache-2.0 | 2019-03-08T01:27:41 | 2019-02-21T01:46:05 | C | UTF-8 | C | false | false | 9,336 | c | #include <os_schedule.h>
#include <os_cpu.h>
#include <os_delay.h>
#include <TCB.h>
#include <myassert.h>
#include <os_ready.h>
#include <os_suspend.h>
#include <os_TCB_list.h>
#include <osinit.h>
#include <myMicroLIB.h>
#include <os_time.h>
#include <export.h>
#include <printf_debug.h>
extern volatile TCB *OSTCBCurPt... | [
"493321524@qq.com"
] | 493321524@qq.com |
79a909b538660a6e265275de2346aa90d75f9104 | 640022a3dd6e7928ede35bac56bea190d3638309 | /200119-152545-ttgo-t1/src/baro.h | df09db9919a21ac6682d1ba70f8cb04813f89366 | [] | no_license | romatou18/ttgo_plat_io | 5b1d00203a4ccfba7c1d93bd60d2e2032db2914c | db7dd3b23fd0829c139bf77e8f3f2ecd8ac3b631 | refs/heads/master | 2022-11-11T21:10:11.386168 | 2020-07-07T10:19:18 | 2020-07-07T10:19:18 | 234,842,955 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 117 | h | #pragma once
typedef struct {
float t;
float tf;
float p;
float pf;
float a;
float af;
} baro_reading_t; | [
"romatou18@hotmail.com"
] | romatou18@hotmail.com |
ed104cb4d8ff42435e7d4e4c3d59b1a5f755a059 | e948540cc869534c06e240e6cfeed265337aaafe | /lib/int_stack.h | ed9819bb51511044855c71cb10f10fd9ff038178 | [] | no_license | SirMixalotMixalot/generiCs | ca0d5a5bee52a6b74973edad37f7ecf69ccc6b9d | 1d02e408188bab33ea4e26f214b1125a5403e878 | refs/heads/master | 2023-05-17T07:51:53.159552 | 2021-06-10T17:52:21 | 2021-06-10T17:52:21 | 375,733,588 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 116 | h | #ifndef INT_STACK_H
#undef TYPED
#undef TYPE
#define TYPED(x) i_ ## x
#define TYPE int
#include "stack.h"
#endif
| [
"bigbk75@gmail.com"
] | bigbk75@gmail.com |
a8533fe30a77b97c172c802ad6d4e90928d61854 | e628fdfd7e654275d56be75f1cb5dad86cb5e486 | /libft/ft_isdigit.c | a278fa989bfe3f8a7a14cea9efd9eeea32f0798e | [] | no_license | mzabalza/push_swap | 4b5d03f663dc41d2a74f37fbf96d62970834e7b5 | ef5e3f0c9cc6dc432365a606612b8b921ccb6b50 | refs/heads/master | 2021-04-30T15:48:05.685529 | 2018-08-25T17:01:06 | 2018-08-25T17:01:06 | 121,250,181 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 991 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: ... | [
"mzabalza@e2r8p8.42.fr"
] | mzabalza@e2r8p8.42.fr |
a9004add49c38e33cbfeae2cbac310c9802b4ccc | 5ce4bc434cae9086a0872eab124e37666d34df44 | /sprites/gameover1.h | 2a3348fdacf0154d5c7b381d83867c8302758264 | [] | no_license | evanyui/GBA_starwarsShooter | 8ac96a7d103c219ab83cc6ea032d3ec58e42d572 | 6412aab0e4a2dd19d28b3c4e9e79404d39740b3b | refs/heads/master | 2021-01-10T12:09:07.527392 | 2015-10-31T02:22:11 | 2015-10-31T02:22:11 | 45,285,476 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 163 | h | #ifndef GAMEOVER1_BITMAP_H
#define GAMEOVER1_BITMAP_H
extern const unsigned short gameover1[38400];
#define GAMEOVER1_WIDTH 240
#define GAMEOVER1_HEIGHT 160
#endif | [
"evanyui@hotmail.com"
] | evanyui@hotmail.com |
efabe695126f288a309d845290ca749c623180b3 | cb643f66cd2a02ba2cbdb9a8985bdc88db09897a | /test/test02.c | 9b4020a7b8936bcb199a5ca35e4193efa30ee56f | [
"BSD-3-Clause"
] | permissive | intel/mpxcheck | cb36b3be0916dc033ea9374f6f348254acad2ab2 | f2f415ccf590c21bf4e720621ad73453e76225bd | refs/heads/master | 2023-05-28T18:11:31.184571 | 2016-10-28T22:21:21 | 2016-10-28T22:22:41 | 72,228,041 | 1 | 3 | null | null | null | null | UTF-8 | C | false | false | 3,059 | c | /*
Copyright (c) 2016, Intel Corporation
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaime... | [
"john.l.whiteman@intel.com"
] | john.l.whiteman@intel.com |
38276827426cf40468919f766e06d640c0cea633 | 012f3145ea5c1ad13172de9a0c155dae95b081e6 | /Week1/Prob2/main.c | f7b801322502b935558a894486debf31e1c6d441 | [] | no_license | garg-shubham/CSN-361 | b130180c4dc1a147b6c3b5d8aee082ac3d494aaf | 85d76de470bd7462308946ac182fb0fea46dbba9 | refs/heads/master | 2021-07-05T10:21:41.747769 | 2017-09-30T09:57:57 | 2017-09-30T09:57:57 | 105,159,887 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 494 | c | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(int argc, char const *argv[])
{
if(argc !=4)
printf("Command line argument incorrect\n");
else
{
int a = atoi(argv[1]);
int b = atoi(argv[3]);
if(strcmp(argv[2],"+")==0)
printf("%d\n",a+b);
else if(strcmp(argv[2],"-")==0)
printf("%d\... | [
"sg.shubhamgarg.1@gmail.com"
] | sg.shubhamgarg.1@gmail.com |
66493e1f209ac581989e81f2818378f0be735bdb | 7f7d2d021ebdc83d183366116964c0449d80d9c9 | /src/onu/apps/lynx/stp/inc/sttrans.h | a3dd187c20e7998386abbd965a34f853e7e04528 | [] | no_license | zhaoxhu/GT811G_YM | 95921b502f85261128a34e71eb9fb14d5393a41a | 4d35638d2dfbaed8736b8753883a1ce94df1e644 | refs/heads/master | 2021-07-11T21:06:39.635295 | 2017-10-11T08:58:12 | 2017-10-11T08:58:12 | 106,529,346 | 1 | 2 | null | null | null | null | UTF-8 | C | false | false | 1,332 | h | /************************************************************************
* RSTP library - Rapid Spanning Tree (802.1t, 802.1w)
* Copyright (C) 2001-2003 Optical Access
* Author: Alex Rozin
*
* This file is part of RSTP library.
*
* RSTP library is free software; you can redistribute it and/or modify it
... | [
"191711783@qq.com"
] | 191711783@qq.com |
2c54550c628b2ba2c689c25438060313bd93c1e8 | 14a5f9a8c95fea365f4af0a9f6e414c3347978d4 | /C/raiz-aproximada.c | a09a5f63b0aee6b163c07d3883ebdced46752404 | [] | no_license | carlosbazilio/lp | a61db3a37c408e9278b202d42bb1ed955aea5067 | 18720b45f581fdb13d4fb51c9f75f1bba4346217 | refs/heads/master | 2022-02-18T12:42:32.883848 | 2022-02-09T22:22:25 | 2022-02-09T22:22:25 | 24,647,667 | 6 | 10 | null | 2021-11-01T22:15:01 | 2014-09-30T17:18:25 | C | UTF-8 | C | false | false | 265 | c | #include "stdio.h"
main() {
int num, numoriginal, cont = 0, raiz = 0, i=1;
scanf("%d", &num);
numoriginal = num;
for (i=1; num>0; i=i+2) {
num = num - i;
cont++;
if (num <= 0) {
raiz = cont;
}
}
printf("Raiz de %d eh %d\n", numoriginal, raiz);
}
| [
"carlosbazilio@gmail.com"
] | carlosbazilio@gmail.com |
0bafa1f3fc928c7fc9974a43f469531609fe3f5e | d7a6eebfcfbe25734889fe7b0ec597386800160b | /MapServer/script/Encounters/MultiTriggeredBehavior.c | 5d1833978a9d89543343c0790495545094722848 | [] | no_license | naturalleo/coh-score | 09f3a9137ab845739f3cc4be026c014af99ed81e | ccb216f07c25457991b86d3b41ec98ff858ed187 | refs/heads/master | 2020-11-24T19:45:13.700022 | 2019-07-28T14:36:02 | 2019-07-28T14:36:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,262 | c |
#include "scriptutil.h"
// Documentation at: http://code:8081/display/coh/Multi-Triggered+Behavior+Script
void ScriptMultiTriggeredBehaviorHandleCondition(ENTITY target, NUMBER idx)
{
if (VarGetArrayCount("BehaviorList") > 0)
{
STRING behavior = VarGetArrayElement("BehaviorList", idx);
if (!StringEmpty(behavio... | [
"omegablast2002@yahoo.com"
] | omegablast2002@yahoo.com |
90ecff96c87e693564e827cae430a984682a4a7e | 98693bda1392f3e47c64f3cc0a79c2c6797e0376 | /e4.c | ee3e1aa91890d1f9423eee615f20886628404787 | [
"MIT"
] | permissive | 1batista/Exercicios-C | 7b256a8cca93b82cadd45cc8ab05b0f818a0d44b | 609b2c12669520e65dfcd9dbf2c720f627f5c8f1 | refs/heads/main | 2023-08-18T02:51:46.429735 | 2021-09-24T13:18:57 | 2021-09-24T13:18:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 335 | c | #include <stdio.h>
int main(void) {
int dia, mes, ano;
printf("Digite um número específico de dias (apenas inteiros): ");
scanf("%i", &dia);
ano = dia / 365;
mes = (dia % 365)/30;
dia = (dia % 365) - mes*30;
printf("Ano(s): %i\n", ano);
printf("Mês(es): %i\n", mes);
printf("Dia(s): %i\n", dia);
... | [
"pedrorocha.bou@gmail.com"
] | pedrorocha.bou@gmail.com |
e1b84912511780a6d8d6d68ca5b628b81257833a | bae4553b931fc1c9187621e8e32768ee57fa166c | /UART/uart.c | 0c53120f39871a57997d3add5f28f1bf2cdaa8c6 | [] | no_license | AbdallahHossam0/TIVA-C-Drivers | 90146364d1d83c21433aa046e60df0a3bc846c22 | f40ee815fea9df8209bb18255dc6f65ed9c2df9f | refs/heads/main | 2023-07-05T00:30:20.804452 | 2021-08-31T14:25:59 | 2021-08-31T14:25:59 | 401,730,605 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 42,762 | c | /* File Comment
* ---------------------------------------------------------------------------------------------------
* [FILE NAME]: <uart.c here>
*
* [AUTHOR]: Abdallah Hossam-Eldin Hosny
*
* [DATE CREATED]: < 25 - 8 - 2021 >
*
* [DESCRIPTION]: <Source file for UART Driver for TIVA C EK-TM4C123GH6PM>
* ------... | [
"eng.abdallahhossam@outlook.com"
] | eng.abdallahhossam@outlook.com |
6fe340e19e446698155406fd5e592a60c5cb5f70 | d9319719777789aee41c1da3ad632b9198c39c5c | /demo-codes/经典编程900例(C语言)/FUNCTION/CHKCONST.C | c9b8fd25a066d657364719abf16712705909ce85 | [] | no_license | limingth/Linux-C-Programming | 6dd750b8fe7a4cb0e32304c5fa4064a71bd27a40 | bf92e86390ac7edc2471ceba1c2f74468983e506 | refs/heads/gh-pages | 2021-01-01T18:07:19.812956 | 2018-10-17T02:20:56 | 2018-10-17T02:20:56 | 3,545,052 | 49 | 56 | null | 2018-10-31T17:47:42 | 2012-02-25T14:47:51 | C | UTF-8 | C | false | false | 252 | c | #include <stdio.h>
void no_change(const char *string)
{
while (*string)
*string++ = toupper(*string);
}
void main(void)
{
char title[] = "Jamsa's 1001 C/C++ Tips";
no_change(title);
printf(title);
}
| [
"limingth@gmail.com"
] | limingth@gmail.com |
f45916ade4e4ee080b972fd921613fcd5f502dca | b1d500a451cd9852089bf3d97e829df069daa9c8 | /Asymmetry/CMacros/RootInclude.h | 255b00f85ecd7a2064b0867c02c4649b70d2fe03 | [] | no_license | sam-grant/EDM | 486ea029bf766c968a3c7b41198ffcf9bc3c9b8a | 525e41de5f675c39014488c79144f47562910736 | refs/heads/master | 2022-10-30T22:35:42.979799 | 2022-10-19T18:44:54 | 2022-10-19T18:44:54 | 296,421,806 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 581 | h | #include "TFile.h"
#include "TH1D.h"
#include "TH2D.h"
#include "TGraph.h"
#include "TGraphErrors.h"
#include "TAxis.h"
#include "TCanvas.h"
#include "TLegend.h"
#include "TF1.h"
#include "TStyle.h"
#include "TPaveStats.h"
#include "TPaveText.h"
#include "TColor.h"
#include "TROOT.h"
#include "TDirectory.h"
#include "T... | [
"samuel.grant94@gmail.com"
] | samuel.grant94@gmail.com |
07ef20d26ae72ae20c1d5cd87a899eb0db3fb80d | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /third_party/ffmpeg/libavdevice/decklink_dec.h | c02344efc311e00cd954317e24e2f8ffd4bd10ab | [
"LGPL-3.0-only",
"GPL-3.0-only",
"LicenseRef-scancode-other-permissive",
"GPL-1.0-or-later",
"LGPL-2.0-or-later",
"LGPL-2.1-or-later",
"LicenseRef-scancode-proprietary-license",
"GPL-2.0-or-later",
"MIT",
"LGPL-3.0-or-later",
"IJG",
"GPL-2.0-only",
"Apache-2.0",
"LGPL-2.1-only",
"BSD-3-C... | permissive | metux/chromium-suckless | efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a | 72a05af97787001756bae2511b7985e61498c965 | refs/heads/orig | 2022-12-04T23:53:58.681218 | 2017-04-30T10:59:06 | 2017-04-30T23:35:58 | 89,884,931 | 5 | 3 | BSD-3-Clause | 2022-11-23T20:52:53 | 2017-05-01T00:09:08 | null | UTF-8 | C | false | false | 1,199 | h | /*
* Blackmagic DeckLink output
* Copyright (c) 2013-2014 Ramiro Polla
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the Li... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
803466d2da4bc97e42bf8b4e39f3d781256988bf | cb9923ebc93c2624c84374462f1491c5eb79d541 | /i2c_rtc.h | a19192fc176d4e91e8a668c54b0a48aee8b1fd73 | [] | no_license | waleed-iftikhar/Data_Logging_System | d26e05f58f08b2643bc8559313871c6ec2ea3277 | 33ec374eee9fee0e1f4bac49668a940290a2b938 | refs/heads/master | 2020-07-07T19:45:16.162778 | 2019-08-20T21:42:04 | 2019-08-20T21:42:04 | 203,458,262 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 247 | h | #define _XTAL_FREQ 20000000
unsigned char BCD2UpperCh(unsigned char);
unsigned char BCD2LowerCh(unsigned char);
unsigned char Asci2BCD(unsigned char, unsigned char);
unsigned char BCD2Dec(unsigned char);
unsigned char rtc1307_read(unsigned char); | [
"rana.waleed22114@gmail.com"
] | rana.waleed22114@gmail.com |
005b0d22b643074f083937881140c24a43cb7219 | 37c6b0dacfbfaca3105d90764fe1c864637b1688 | /apps/AppointmentApp/ios/Pods/Headers/Public/react-native-month-year-picker/RNMonthPicker.h | 8b485581c4e69eaeef92a8fa90086c12fc624b6e | [] | no_license | dineshchaudhary923092/appointment | b5137d8ffb64320365ce90ca6f6bc716b5b343a1 | 4441b0903e189feee8483460da52777672239cd7 | refs/heads/master | 2022-12-16T22:55:36.805116 | 2020-09-21T18:46:33 | 2020-09-21T18:46:33 | 297,428,999 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 78 | h | ../../../../../node_modules/react-native-month-year-picker/ios/RNMonthPicker.h | [
"craftnotion@Dineshs-Air.Dlink"
] | craftnotion@Dineshs-Air.Dlink |
e4d210d707717ba7c5343e81747ae76802cf097d | 0155ea4c06dd1637afb64bf939710b2abe71e726 | /背景系/Main.h | f8c47fa809db4dc8750c34e13e3a09883ba25c2d | [
"Unlicense"
] | permissive | tq9m1/testRepository | 49fce70ab8bcb7c5b4855e40c2f36f5d11a3e6a4 | 3ef5e74398da0909debb540e523829c217bc4767 | refs/heads/master | 2022-11-12T20:11:11.279918 | 2020-06-25T08:19:42 | 2020-06-25T08:19:42 | 262,977,608 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 127 | h | #pragma once
#define SCREEN_SIZE_X 860
#define SCREEN_SIZE_Y 600
bool SysInit(void);
void Main(void);
void Draw(void); | [
"noreply@github.com"
] | tq9m1.noreply@github.com |
0a389acfdfb19ec0fd9400a661319072449afb53 | 33150da6f79b726ab95444c03ca164c1560bea88 | /phlox/include/phlox/arch/scheduler.h | aab0b7e63ed718fc2730f7dcddfb5551c2932ea5 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | skarpenko/phlox | 896347ee2c4de7a5658aa36277c5d8d8d7a61131 | 61655d44c7732f47f5d58fd4dba4c2694e404abb | refs/heads/master | 2021-01-18T14:06:18.303938 | 2013-10-23T20:49:23 | 2013-10-23T20:49:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 748 | h | /*
* Copyright 2007-2009, Stepan V.Karpenko. All rights reserved.
* Distributed under the terms of the PhloxOS License.
*/
#ifndef _PHLOX_ARCH_SCHEDULER_H_
#define _PHLOX_ARCH_SCHEDULER_H_
#include <phlox/types.h>
#include <phlox/ktypes.h>
#include <phlox/kargs.h>
#include INC_ARCH(phlox/arch,scheduler.h)
/*
* Arch... | [
"carp@mail.ru"
] | carp@mail.ru |
2eecf268ba49a369306d62f1f455f10f70ed9628 | 808def4676ec03b193636edba841054ece8021db | /ChallengeProgrammingDesignCompetition/TheSecondChapterTheFledglingPrimaryArticle/TheSecondSectionGoStraightGreedyMethod/FrenceRepair/FrenceRepairAllPossibleBFS.c | c127bf5c6532628c40893fa5025688f22eda60cf | [] | no_license | yigezhe/programming | 75257be59a3380572c54d0624b7f72b56904caa5 | 9e7a2026e967e92031347ed9178440cce2701033 | refs/heads/master | 2020-12-28T21:06:17.548241 | 2015-01-09T21:33:58 | 2015-01-09T21:33:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,341 | c | #include<cstdio>
#include<algorithm>
#include<queue>
using namespace std;
const int INF = 10000000;
const int MAX_N = 100;
const int MAX_M = 100;
//使用pair表示状态时,使用typedef会更加方便一些
typedef pair < int, int >P;
//输入
char maze[MAX_N][MAX_M + 1]; //表示迷宫的字符串的数组
int N, M;
int sx, sy; //起点坐标start x, start y
int gx, gy; //终点... | [
"1830973318@qq.com"
] | 1830973318@qq.com |
3def98501103b095e85166d03cafb886121aff6b | 2d9f9f461b56d736b3388331e9815094dca7178d | /Pods/Headers/Typhoon/TyphoonPropertyStyleConfiguration.h | a7db43170af9e679bb2de6dada4b54f9bea3ff51 | [] | no_license | daniil-korolev/DKSpeller | a79e26b9a6b481e2ebc537d85b999ab25c5f1d5a | ed85ab4987d1746a73bafee0e93231b534b048ae | refs/heads/master | 2021-09-14T20:56:15.577380 | 2018-05-19T10:49:27 | 2018-05-19T10:49:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 111 | h | ../../Typhoon/Source/Configuration/PropertyConfigurers/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h | [
"denbrubeck@gmail.com"
] | denbrubeck@gmail.com |
bb6c1fc07803bd3903d81231a0313fe6a6dfa2cc | bbd984cb875b4324cc9a7e61845ea9450558d100 | /word.c | 914c9714b37520f193e4931f842044bd50464341 | [] | no_license | chindhamani/dd | 9cc989c7acdc8f6412f18420ed574621dc3641b2 | ca3a5449fd04a98a231a1333d4e36b0f5f8960a2 | refs/heads/master | 2020-06-26T07:11:43.657171 | 2017-07-12T12:52:11 | 2017-07-12T12:52:11 | 97,006,306 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 57 | c | #include<stdio.h>
void main()
{
if(printf("Word"))
{
}
}
| [
"noreply@github.com"
] | chindhamani.noreply@github.com |
5a58c5c633f78114ec416c960ff283b7d6d12193 | 89fadd7c1a3f6c8c65b7cff727c6ca74058d241f | /Example/Pods/Headers/Public/openssl/aes.h | e3d35bff4320f1d11d4927196cab792a63c9f839 | [
"MIT"
] | permissive | 673697831/YYFlutterSDK | 71427e05b2d2e91adf45972298c7834f596c428f | 438ba41f99f5e49ad04b419214eb8a4637eacfc8 | refs/heads/master | 2020-04-27T00:00:53.020485 | 2019-04-30T08:01:31 | 2019-04-30T08:01:31 | 173,921,294 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 30 | h | ../../../openssl/include/aes.h | [
"ouzhirui@yy.com"
] | ouzhirui@yy.com |
90293155d62f6b488b6ebfc1da24cc6d5e931fa1 | 7e34099853f87cbfd0ee69d8894d10eaf8e1df94 | /implementations/group6/Win64-RC/C18/ty886.h | c51b9b0e555b99524927cad214874c68552f376b | [] | no_license | Matias-Bernal/dose2014 | cc1b973de8ba592ba82b2c8c8efd7749bcd3a033 | 139376fb884523cf5e0ccd7e9fed152555641a35 | refs/heads/master | 2016-09-06T03:51:44.566674 | 2014-12-24T14:49:10 | 2014-12-24T14:49:10 | 32,119,587 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 900 | h |
#ifndef _C18_ty886_
#define _C18_ty886_
#ifdef __cplusplus
extern "C" {
#endif
extern EIF_REFERENCE F794_6298(EIF_REFERENCE);
extern EIF_REFERENCE F794_6299(EIF_REFERENCE, EIF_INTEGER_32);
extern EIF_INTEGER_32 F794_6300(EIF_REFERENCE);
extern EIF_INTEGER_32 F794_6301(EIF_REFERENCE);
extern EIF_BOOLEAN F... | [
"payomaty666@gmail.com"
] | payomaty666@gmail.com |
5ef6e833a47b676ce8ce7255ef0332080ca604d0 | 53e712385bc7e678b5d93e0953939004e7063de9 | /src/backend/utils/init/flatfiles.c | aa155a07bb3c52efeca5c1580a8e9cc1b95ef921 | [
"PostgreSQL"
] | permissive | jiayuasu/bitmap-postgresql | 7696664c8e1b1d13aef703dea3f40ce20d5ce631 | b09fec515a1cc954cf2d9b3944167d8fd57c6c0b | refs/heads/master | 2020-04-06T06:59:05.928789 | 2016-09-01T09:43:54 | 2016-09-01T09:43:54 | 63,589,989 | 5 | 1 | null | null | null | null | UTF-8 | C | false | false | 28,074 | c | /*-------------------------------------------------------------------------
*
* flatfiles.c
* Routines for maintaining "flat file" images of the shared catalogs.
*
* We use flat files so that the postmaster and not-yet-fully-started
* backends can look at the contents of pg_database, pg_authid, and
* pg_auth_m... | [
"jiayu2@asu.edu"
] | jiayu2@asu.edu |
5f66efd3cf5f18518ee2751b02bd6cbdb1b3caba | 7e15fa7f1de4ccb4bc05f323a2528ef4f9580183 | /lib/c/raw.c | 6bd6f77f533bdf75d9701c6be203c2b45062f457 | [] | no_license | daileimail/disp3 | 4bd1bdcd0d865456fa796d69af4c264519c522fc | 374c935595fb634ecfcb0d231965273dc61df836 | refs/heads/master | 2021-01-15T09:33:53.328090 | 2016-03-16T07:05:18 | 2016-03-16T07:05:18 | 54,008,505 | 0 | 0 | null | 2016-03-16T07:02:01 | 2016-03-16T07:02:01 | null | UTF-8 | C | false | false | 3,534 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#define PATH "/home/zyp/db/data/chr_seq/ori_seq/"
#define MAX_CHR_LENGTH 300000000
#define MAX_LINE_LENGTH 50
#define MAX_LINE_NUM MAX_CHR_LENGTH/MAX_LINE_LENGTH
#define MAX_ORF_NAME 400
char rev(char nt){
if (nt=='a')
return 't';
if... | [
"yzhou01a@gmail.com"
] | yzhou01a@gmail.com |
6189e7892ce6be4d5b19867148c472771fbbf218 | 016d593d6897329db1ae5a7eff3a8a4402882835 | /src/main.C | 5d09d825a0154a1352aa9e57d6d772b39746591e | [] | no_license | jmheaden/Wolke | 996197f85d26fdb2ade99e7183bdaa84578cd2f4 | 0d7f5bf75276131349eb5284dadeb00000c359e1 | refs/heads/master | 2020-03-22T20:27:51.257682 | 2018-07-12T17:22:59 | 2018-07-12T17:22:59 | 140,602,465 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 190 | c | // this is the main file which all code will run
#include "message.h"
#include <cstdlib>
using namespace std;
int main(){
message m;
m.printMessage();
return 0;
}
| [
"jmheaden@gmail.com"
] | jmheaden@gmail.com |
904fb10dcd737ca382bc31c319ac0aea228a5746 | 3321e42351c51aa461e9423700e495814e19dece | /Lista de Atividades/Lista PA 2018.1/Resolução/16.c | 931e1a5e4dc2252a59dfba028568ba668c0d4ee7 | [] | no_license | gustavofvieira/Aulas-C-2018.1 | befe4d2a1bedccdd17cd69853c8a466c28b23f0a | 9843c5a021780058b491ccdb404182f85e3d3f89 | refs/heads/master | 2021-09-22T00:03:58.510649 | 2018-09-03T22:11:52 | 2018-09-03T22:11:52 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C | false | false | 276 | c | /*16 - Tendo como dados de entrada a altura e o sexo de uma pessoa, construa um
algoritmo que calcule seu peso ideal, utilizando as seguintes fórmulas:
? para homens: (72.7 * h) – 58;
? para mulheres: (62.1 * h) – 44.7.*/
#include<stdio.h>
#include<stdlib.h>
main(){
}
| [
"gustavofvieira@live.com"
] | gustavofvieira@live.com |
234b0c9affd998ef1895a0838a2a0ce91c625c2a | b228e329061e5b4c7d737b30ed416a63aa84b05c | /stm32f411ret6_nucleo_rgb_led/Drivers/BSP/Src/rgb_led.c | 95ff5978d8645cc6247512292c8070c0377a152c | [] | no_license | JoshuaThompsonSS/STM32F411RET6_Nucleo | 81f747cb3feaa3d6c7d4c6dc8754b08513e943d6 | 86bfcf49645a74b4d9b840300245f1143f057dd2 | refs/heads/master | 2020-04-06T07:02:14.589533 | 2016-08-17T21:52:38 | 2016-08-17T21:52:38 | 59,329,962 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 25,340 | c | /*
******************************************************************************
* File Name : RGB_LED.c
* Description : RGB_LED: RGB LED Driver - uses three pwm signals to control
* voltages to the three leds making up an RGB led
*************************************************************... | [
"joshuathompson@sonicsensory.com"
] | joshuathompson@sonicsensory.com |
cfa08e8edf02d3999e3f16c10aecafe62881e91f | 92c7bbbe6673795e99453e5768e2416cd66f03a3 | /CondVar/c-timer.c | d6b13fb2c67f39362174f977a44cc21231c9049f | [] | no_license | richwolski/cs170-lecture-examples | 2faca21cd05216b748a75a025ecce8bd6b631c86 | 2433fbe4e8fb3ce27746e5c3666253a712cb8d00 | refs/heads/master | 2022-10-26T06:15:44.800354 | 2022-10-19T20:37:48 | 2022-10-19T20:37:48 | 28,273,036 | 7 | 8 | null | null | null | null | UTF-8 | C | false | false | 210 | c | #include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/time.h>
double CTimer() {
struct timeval tm;
gettimeofday(&tm,NULL);
return((double)tm.tv_sec + (double)(tm.tv_usec/1000000.0));
}
| [
"rich@eucalyptus.com"
] | rich@eucalyptus.com |
284c4d439652c167717259d7e3f6a47551ac7a1b | 080814197bc4b14a79bab6778c91598ec8f6cd69 | /src/common/lock/spinlockstrategy.c | 35edce72814ff1aa07a882d25a8df2c5adb7071e | [] | no_license | riryk/RussoDB | f0635a169cf07ce212713a58a94a34d55acab6a0 | e91e28f1d25418cde8853b16d49c3e6484e96ece | refs/heads/master | 2021-12-27T10:08:05.497211 | 2021-09-24T15:07:52 | 2021-09-24T15:07:52 | 9,714,397 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 678 | c | #include "spinlockstrategy.h"
const SISpinLockStrategy sSpinLockStrategy =
{
spinLockCtor_spinlock,
initLock_spinlock,
tryLock_spinlock,
delay_spinlock,
freeLock_spinlock,
unlock_spinlock
};
const ISpinLockStrategy spinLockStrategy = &sSpinLockStrategy;
void spinLockCtor_spinlock(void* self) { }
vo... | [
"Ruslan_Iryk@EPUAKYIW0246.kyiv.epam.com"
] | Ruslan_Iryk@EPUAKYIW0246.kyiv.epam.com |
4e8a6c949f130df0e59c664c012ce146f4238107 | f678ba20c7ce42e1b3d436fe7b178b11fcb8fbe8 | /0x04-pointers_arrays_strings/7-puts_half.c | faf20eaba2f487cd6a5849dbba2d5136629fc0bf | [] | no_license | eserebry/holbertonschool-low_level_programming | c0a293a7394973692f1604f817dbe266395fed48 | 198ec85ad4fc9c6c2b49ffb1116ec3c14c7b5a3e | refs/heads/master | 2021-05-11T03:01:45.434957 | 2018-08-10T04:29:04 | 2018-08-10T04:29:04 | 117,905,879 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 387 | c | #include "holberton.h"
/**
* puts_half - prints half of a string, followed by a new line.
*
* @str: pointer to the first element of the string str
*/
void puts_half(char *str)
{
int i;
i = 0;
while (str[i] != '\0')
{
i++;
}
if (i % 2 != 0)
{
i = (i - 1) / 2;
i = i + 1;
}
else
i = i / 2;
while (s... | [
"elenaserebryakoff@gmail.com"
] | elenaserebryakoff@gmail.com |
69c655c65b1d9c92dac43978f77829f72d60c674 | 923ec52872ac4faada05ebc24183331232283406 | /Tb/Kepler/options/ResStudies/lhcbStyle.C | 39e06577416fca9fa6e15f1eea69c22b8d705dfb | [] | no_license | chrisburr/Kepler | d92b594be8fe426720e8c61c4eafc193087a8596 | ed84e81bd959485ebc1be05bde6954917302244a | refs/heads/master | 2021-01-13T14:30:12.666857 | 2016-11-04T15:44:26 | 2016-11-04T15:44:26 | 72,861,615 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,500 | c | // all users - please change the name of this file to lhcbStyle.C
// Commits to lhcbdocs svn of .C files are not allowed
{
// define names for colours
Int_t black = 1;
Int_t red = 2;
Int_t green = 3;
Int_t blue = 4;
Int_t yellow = 5;
Int_t magenta= 6;
Int_t cyan = 7;
Int_t purpl... | [
"christopher.burr@cern.ch"
] | christopher.burr@cern.ch |
257637d180e56e9fd04e8d6bb5b16de0e092d25f | 0f4b65bdd99e642402d489fdd662a7dc1d1441f5 | /testsuite/EXP_2/test1820.c | bd595ae877a7e8e14cbbcd8b8cb60926a2cd0f54 | [
"MIT"
] | permissive | matthiaskrgr/CF3 | 157e4967f12a6e6a0eee0fa9421f7855d24047c5 | 981a49c2b1f0fb80e1d1778beb3f3ce8578338c3 | refs/heads/master | 2021-01-01T06:02:05.773732 | 2017-07-15T20:15:36 | 2017-07-15T20:15:36 | 97,335,407 | 0 | 0 | null | 2017-07-15T18:41:20 | 2017-07-15T18:41:20 | null | UTF-8 | C | false | false | 54,778 | c |
/*
CF3
Copyright (c) 2015 ishiura-lab.
Released under the MIT license.
https://github.com/ishiura-compiler/CF3/MIT-LICENSE.md
*/
#include<stdio.h>
#include<stdint.h>
#include<stdlib.h>
#include"test1.h"
uint16_t x5 = 451U;
int32_t x7 = -1;
volatile int32_t t1 = -183639533;
static int16_t x15 = INT16_MIN;
static ... | [
"ishiura-compiler@ml.kwansei.ac.jp"
] | ishiura-compiler@ml.kwansei.ac.jp |
2e40762d5709bcd94b472d85b2be8e9d1c40f2b1 | e96bebbd932e3edbc57383c731598ccd95b4008e | /Project/Pfm6Ctrl/src/usb/usb_bsp.c | 0ea4391ab766c22b8336455c14e3d38c62f49dff | [] | no_license | yallawalla/Starwalker_PFM6 | 3060fec817b10d4ae40b064fe0d7bc4e21ed1a90 | 8869dc5ea9e94d53ef54305cac7359139bbf0912 | refs/heads/master | 2019-03-20T15:54:05.916815 | 2019-01-29T11:25:35 | 2019-01-29T11:25:35 | 123,976,902 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,231 | c | /**
******************************************************************************
* @file usb_bsp.c
* @author MCD Application Team
* @version V1.1.0
* @date 19-March-2012
* @brief This file is responsible to offer board support package and is
* configurable by user.
******************... | [
"mr.mocnik@gmail.com"
] | mr.mocnik@gmail.com |
5c55786c67afe340ff5524909296f47404224027 | 1564c5b7255ac64cdb930ae41810d358f8255953 | /d/henshan/yushulou.c | db2950c5bd0e8081b19ccf63f7cde09971f36860 | [] | no_license | klajie/mud | 9f531cc845389ed1d4beea8ea5c1146af086dd41 | 8d16bbc725a0d3fa53c71488f6c90e199b723a17 | refs/heads/master | 2020-03-19T04:19:28.506756 | 2018-06-02T12:30:23 | 2018-06-02T12:30:23 | 135,816,231 | 2 | 0 | null | 2018-06-02T12:34:54 | 2018-06-02T12:34:54 | null | GB18030 | C | false | false | 411 | c | inherit ROOM;
void create()
{
set("short", "御书楼");
set("long", @LONG
御书楼为南岳庙历代藏书之处,天子御赐,贤达乐捐,这
里早已洋洋大观。
LONG);
set("exits", ([
"south" : __DIR__"jiayingmen",
"north" : __DIR__"dadian",
]));
set("no_clean_up", 0);
setup();
replace... | [
"i@oiuv.cn"
] | i@oiuv.cn |
1f7a7c5cb2160cecf5573c690b1d13086ce357b7 | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/ThirdParty/MCPP/mcpp-2.7.2/test-c/e_std.c | 1cbe8b2690bb8fcba869adccb33ccce5e6b24d0a | [
"BSD-2-Clause",
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C | false | false | 8,048 | c | /*
* e_std.c
*
* 1998/08 made public kmatsui
* 2002/08 revised not to conflict with C99 Standard kmatsui
* 2003/11 added a few samples kmatsui
*
* Samples to test Standard C preprocessing.
* Preprocessor must diagnose all ... | [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
f235b263b0d1def222a4be39e2f04d619690d5b5 | 7bf14dc9024b5b817bf02a3c40d888e91c002977 | /Firmware/AS3993FwSource/common/firmware/microchip/include/Compiler.h | 0281c60f4e45f21a37d0e9a0f38e6aafb698e54a | [] | no_license | manticore3/Hermes | c466b7ebf0d0ebdc7f16df67cab2170302e78c2c | 1098b1a57328c90d344940d2e5bce2568ef2a796 | refs/heads/master | 2020-03-09T00:28:11.725489 | 2019-02-20T18:24:05 | 2019-02-20T18:24:05 | 128,488,927 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,325 | h | /*********************************************************************
*
* Compiler and hardware specific definitions
*
*********************************************************************
* FileName: Compiler.h
* Dependencies: None
* Processor: PIC18, PIC24F, PIC24H, dsPIC30F, ... | [
"greg.pitner@rfmicron.com"
] | greg.pitner@rfmicron.com |
cdf9819e5275e5beb2018af2b638795fa0b57902 | 3aed069a63e2f6bf652cc5e34546534ec0df6285 | /libft/ft_memset.c | f24f53ceb725d6933f9349a807b7f17a35b27afc | [] | no_license | squiquem/RT | 3c26e59820fbb7b2816efef1e94c133586e26ddc | a6631ed7f00b31708b110d6f1b312cd69737398d | refs/heads/master | 2020-04-26T20:42:49.657635 | 2019-12-03T18:05:40 | 2019-12-03T18:05:40 | 173,819,216 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,062 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memset.c :+: :+: :+: ... | [
"stef@STEFs-Mac.local"
] | stef@STEFs-Mac.local |
c0bd5bef6c68131548f62ddb1d059320d1d6eb03 | 2b8639ed8aa09d0c52080d4213e15770fb2b76e6 | /c_practice/3.14/PF-4.arm/display_jpeg1.c | 8c051618bde8a0170fb16adf30457ceb42af8d69 | [] | no_license | imdxt/homework_practice | d1331801d6d8ecc994408087fd32f6d057316e63 | c02bbdbf5936d6e501dac1c007f292623187369a | refs/heads/master | 2020-06-02T19:03:01.815972 | 2011-03-23T10:39:48 | 2011-03-23T10:39:48 | 1,166,697 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 15,254 | c |
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include "common.h"
#define DEBUG 0
#if DEBUG
#endif
extern int *status_p;
int display_jpeg(char *filename, fb_info fb_inf)
{
fb_info jpeg_inf;
u8_t *buf24 = decode_jpeg(filename, &jpeg_inf);... | [
"dong@ubuntu.ubuntu-domain"
] | dong@ubuntu.ubuntu-domain |
2695bc9aef768623b18e093ee870e7375a4ee6c0 | 26ab708c5ffdf4a9aba0b7d35c4f47a26742814d | /backend/aes/aeskey.c | 61ce9a03e8a791f876d07ecf8bb907decf54f3bd | [] | no_license | drkvogel/bb-quizzes | bab580aefeac42a95c405e395fe03ae1d319a63f | d3e8f42c27ba4e93b6bebab6c458ca4e39f22d12 | refs/heads/master | 2022-07-11T23:18:31.970734 | 2021-06-23T19:14:13 | 2021-06-23T19:14:13 | 58,221,563 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 16,636 | c | /*
---------------------------------------------------------------------------
Copyright (c) 2003, Dr Brian Gladman, Worcester, UK. All rights reserved.
LICENSE TERMS
The free distribution and use of this software in both source and binary
form is allowed (with or without changes) provided that:
1. distrib... | [
"drkvogel@yahoo.co.uk"
] | drkvogel@yahoo.co.uk |
c62694d38e969fb2f0d27b4375ead6a80bb0f7d7 | 8d9efbaa4f62c934edff0f5d67c1e768e3400182 | /Motor_control-master/ti_2000/c2000/C2000Ware_3_04_00_00/libraries/dsp/FPU/c28/examples/vector/mpy_SP_RMxRM/dsp_mpy_SP_RMxRM.c | 47b0e55b2cd19065a138a38e0bf69935af5448b3 | [] | no_license | Mounikak99/E-motor-control | 5236b85874cfc50090a14e9d58e45339d63c5f29 | 7fdd21ff7331ef7a810378e131605ad7b1c5d3e8 | refs/heads/main | 2022-07-29T16:12:03.448714 | 2022-03-04T05:12:46 | 2022-03-04T05:12:46 | 436,141,633 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,573 | c | //#############################################################################
//
//! \file dsp_mpy_SP_RMxRM.c
//!
//! \brief Multiplication of Two Real Matrices
//! \author Vishal Coelho
//! \date Mar 30, 2017
//
// Group: C2000
// Target Device: TMS320f28002x
//
// The input and golden files were ob... | [
"88265597+Mounikak99@users.noreply.github.com"
] | 88265597+Mounikak99@users.noreply.github.com |
b064251d28af53f8eca701608f685b37f45c65dc | de8c0ea84980b6d9bb6e3e23b87e6066a65f4995 | /3pp/linux/drivers/gpu/drm/vkms/vkms_crtc.c | 74f703b8d22a511674a8001eba16b07c5402ed1b | [
"MIT",
"Linux-syscall-note",
"GPL-2.0-only"
] | permissive | eerimoq/monolinux-example-project | 7cc19c6fc179a6d1fd3ec60f383f906b727e6715 | 57c4c2928b11cc04db59fb5ced962762099a9895 | refs/heads/master | 2021-02-08T10:57:58.215466 | 2020-07-02T08:04:25 | 2020-07-02T08:04:25 | 244,144,570 | 6 | 0 | MIT | 2020-07-02T08:15:50 | 2020-03-01T12:24:47 | C | UTF-8 | C | false | false | 7,851 | c | // SPDX-License-Identifier: GPL-2.0+
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_probe_helper.h>
#include <drm/drm_vblank.h>
#include "vkms_drv.h"
static enum hrtimer_restart vkms_vblank_simulate(struct hrtimer *timer)
{
struct vkms_output *output = container_of(timer, struct vk... | [
"erik.moqvist@gmail.com"
] | erik.moqvist@gmail.com |
96d0c5e5e0584ef26bf343ccf8f6295c7a7b78d4 | 06318ed4b74556ab94b211cba623501487104790 | /HuffCSIDH/constants.h | 7b4afe710191cb96b09793ee640c4316782ba16e | [] | no_license | suhrikim/HuffCSIDH | 22986686505062d29be82b984006256b27a2fc89 | 0500e4a32d5dd402c623c3ef3299555aa92cd042 | refs/heads/main | 2023-07-13T11:15:23.163013 | 2021-08-23T15:25:31 | 2021-08-23T15:25:31 | 384,151,385 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 454 | h | #ifndef CONSTANTS_H
#define CONSTANTS_H
extern const uint64_t pbits;
extern const uint p;
extern const fp base_a;
extern const fp base_a_inv;
extern const fp fp_0;
extern const fp fp_1;
extern const fp fp_2;
extern const fp fp_4;
extern const fp fp_6;
extern const fp two_inv;
extern const fp r_squared_mod_p;
extern co... | [
"noreply@github.com"
] | suhrikim.noreply@github.com |
f451bb99e8aec9a282096737bbff60535c415ec4 | 71e5f96a29f5d643ab888b37677d38c33f8d765d | /d/shadow/guilds/angels/tmp/mon/nihilus.c | a4f29ea1f795118a95bee0a86ac81e4b00bfe6cb | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Cherno-SuS/SunderingShadows | 5f755fbebb79dc0b9d1c2a0541408be4afeb8b67 | c3b4370beb2c4351ecc60826850c94892a42b685 | refs/heads/main | 2023-04-21T09:52:14.580024 | 2021-03-23T12:09:55 | 2021-03-23T12:09:55 | 349,490,686 | 0 | 0 | NOASSERTION | 2021-03-23T12:09:56 | 2021-03-19T16:40:12 | null | UTF-8 | C | false | false | 4,416 | c | //Coded by Bane//
// guild stuff commented out by Styx 8/2002 & (hopefully) bugs fixed
#include <std.h>
inherit MONSTER;
void create(){
::create();
set_id(({"lord","Lord","nihilus","Nihilus","lord nihilus","Lord Nihilus"}));
set_name("Lord Nihilus");
set_short("Lord Nihilus, fallen warlord");
set_l... | [
"law@shadowgate.org"
] | law@shadowgate.org |
aed2df6385881b16b114cb270fa4d9db4024c159 | 560cb5ed9c8df6c4ec6b276b7f422b72a7bdc2eb | /Artmame/src/sound/samples.h | e2f9642dea5fbb344224e5d494ea383294eb0128 | [] | no_license | shangma/mame0112 | 3503af14b38ad382257f01c74638e7a6f7861f1d | e98e2daebda9f430519893ac61232b8eae74516b | refs/heads/master | 2020-04-06T03:47:11.945469 | 2012-07-03T15:43:29 | 2012-07-03T15:43:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,813 | h | #ifndef SAMPLES_H
#define SAMPLES_H
struct loaded_sample
{
int length; /* length in samples */
int frequency; /* frequency of the sample */
INT16 * data; /* 16-bit signed data */
};
struct loaded_samples
{
int total; /* number of ... | [
"arthur_choung@me.com"
] | arthur_choung@me.com |
00b568fa685046efd396d160c202820a7d01ac60 | 873b3289e7e2c5945687454d01214db3290a4240 | /ComputerNetworking/sigsrvsigcli/old/tcp_echo_srv.c | 4f7e3a0ded57719cd2e8a17efa128dd4f2261817 | [
"MIT"
] | permissive | HeRaNO/ChickenRibs | ad8dbbc4163af3db22fdcd59dae94830e5f5726c | ff6f1bfad4e3e86294784f32de99abbea001e25a | refs/heads/master | 2023-06-08T16:45:00.271629 | 2023-06-04T09:19:36 | 2023-06-04T09:19:36 | 230,755,863 | 17 | 8 | MIT | 2022-05-25T15:36:33 | 2019-12-29T13:43:37 | C | UTF-8 | C | false | false | 2,158 | c | // Author: HeRaNO
#include <errno.h>
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
#define MAX_CMD_STR 100
int leave;
char buf[MAX_CMD_STR + 1];
void sig_pipe(int sig)
{
... | [
"heran55@126.com"
] | heran55@126.com |
14168da0840804bb70c0a5348bba0c8487c28fff | 9969fbe8be8dd1bfda7703054b3ab1bf3cbab59f | /Lecture_2/SparseGridCode/pyipopt/Ipopt-3.12.5/ThirdParty/ASL/solvers/indic_cons.c | 0fa6cd924a05efbb542ebda17d828163693f3a54 | [] | no_license | sischei/global_solution_yale19 | 95ff5963d2aa3358bfeccb950f0f6827a9b98aca | 6a2c8c71897fca620d0a5955b1b2072d84f424fe | refs/heads/master | 2021-12-31T23:19:19.378199 | 2021-11-05T06:31:29 | 2021-11-05T06:31:29 | 164,389,986 | 21 | 20 | null | 2021-11-05T06:31:31 | 2019-01-07T06:46:38 | Python | UTF-8 | C | false | false | 13,062 | c | /****************************************************************
Copyright (C) 2011 AMPL Optimization LLC; written by David M. Gay.
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in ... | [
"noreply@github.com"
] | sischei.noreply@github.com |
ae1e9fc03b7b2c0c3479b35ae36bfc4259854e80 | c480c68edc9af2cd36ec588d09b94ad55d3a6369 | /FreeRTOS/include/FreeRTOSConfig.h | 3edeec9190ffb3e88a7bce9bb977a12104959a1e | [] | no_license | tsinbal/SuYu | 3e7cb61664ddca24ee73f9253288063d5bc04f1b | 72e938f2674074d20b188ef77e7af3eb4a2c4df2 | refs/heads/master | 2020-07-22T08:33:11.680785 | 2019-09-08T15:40:07 | 2019-09-08T15:40:07 | 207,133,035 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 13,291 | h | /*
FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.
All rights reserved
VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
This file is part of the FreeRTOS distribution.
FreeRTOS is free software; you can redistribute it and/or modify it under
the... | [
"83338848@qq.com"
] | 83338848@qq.com |
b035718621159bc926c430487ba166a4421f837b | 85406027985cd932b3845daafaab9e6beb6a3e16 | /C99/C03/ex03/ft_strncat.c | 988671cd140c18644d4741bd7a5c999b4304be4d | [] | no_license | S-Erwen/42_Piscine | 8e8b62030356010abd61ef53fb831b97d7753090 | 87b721e5f79ebecf2ff1add2457252178181d4ac | refs/heads/master | 2022-12-01T04:44:22.371279 | 2019-10-16T17:21:27 | 2019-10-16T17:21:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,210 | c | /* ************************************************************************** */
/* LE - / */
/* / */
/* ft_strncat.c .:: .:/ . .:: ... | [
"dev.sanjaro@gmail.com"
] | dev.sanjaro@gmail.com |
9093858694688318264b0647d5726fe857803ed3 | 0c7ef3e922ec58bef2443785283ace42c676c471 | /KL27Chainsaw/Sources/Events.h | 0ec8d5c8475984cc0a81ab3b5e380b076558f1df | [] | no_license | hassan164/Codegen | 73a336f3f6a6f9ab3fd940d176010609457b8aeb | e04cc2fbc550c50b09f73235907ef5821f86ff20 | refs/heads/master | 2020-06-20T00:06:40.584559 | 2016-11-27T14:59:48 | 2016-11-27T14:59:48 | 74,894,787 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,248 | h | /* ###################################################################
** Filename : Events.h
** Project : KL27Chainsaw
** Processor : MKL27Z64VLH4
** Component : Events
** Version : Driver 01.00
** Compiler : Keil ARM C/C++ Compiler
** Date/Time : 2016-11-11, 11:57, # Co... | [
"hassanma@kth.se"
] | hassanma@kth.se |
482eecdfd9d0719fcf6e3ed5cbcc8a767699817d | dfaecc2677f424e587742a854d936f1bd7ed222f | /merge_sort.c | cdc4a895e46408da0d24aa59ab25cdf39c1f0cf5 | [] | no_license | DaBKIM/data_structure | 36048332fe895446961aaa644c69601b7f1fe2eb | 9592226b16f917234c215718f5e3d29cb22bb3e4 | refs/heads/master | 2021-08-19T00:13:53.248381 | 2017-11-24T09:18:21 | 2017-11-24T09:18:21 | 110,993,927 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,741 | c | #include<stdio.h>
#include<stdlib.h>
#define MAX 100000
FILE* fi;
typedef int ElementType;
int *iter_arr;
int *recur_arr;
int *tmp;
int input[MAX];
// Merge arrays
void Merge(ElementType A[],ElementType TmpArray[],int Lpos,int Rpos,int RightEnd){
int i,LeftEnd,NumElements,TmpPos,save;
save=Lpos;... | [
"rlaekqls0224@naver.com"
] | rlaekqls0224@naver.com |
30ec4d5646e9d69710bc76dd0ccdc03acb80ab37 | 39ab0c320d5b7e8745e11a58793fd3af8df5ab7b | /php5.1/Zend/zend_llist.c | 59cac8c62b9b68f98550692901ec5638dd23c815 | [
"Zend-2.0"
] | permissive | nazarevrn/docker_test | 42926d5dcd850a9baf367156cb5c13a7cf6d15ca | 2718969fcd18fb3a9c7d641d9a181ddfa51fff78 | refs/heads/master | 2020-09-05T10:11:57.010743 | 2019-11-07T07:17:23 | 2019-11-07T07:17:23 | 220,069,457 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,940 | c | /*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright (c) 1998-2007 Zend Technologies Ltd. (http://www.zend.com) |
+---------... | [
"r.nazarev@efko.ru"
] | r.nazarev@efko.ru |
c69e079b283e7e8c52ea6f84f626972897d51404 | fe692881320e10c55962cebd165d478c1434c359 | /npc/base/0015.c | bc72c08b06c0d4e23ff5f77ebdc6820798e4cb09 | [] | no_license | anho9339/chienquoc | 130602c90c43053bbc99dfbfbc877de0b2d81dd7 | cb5157d5eabcb4bb2ff71c292cfbdd5dc5fbb221 | refs/heads/master | 2021-07-04T07:51:49.408023 | 2021-02-01T15:15:58 | 2021-02-01T15:15:58 | 222,929,950 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,940 | c |
// 自动生成:/make/npc/make0015
#include <npc.h>
#include <ansi.h>
#include <task.h>
#include <equip.h>
inherit OFFICER;
// 函数:小贩识别
int is_seller() { return 1; }
// 有自己的do_look函数
int is_self_look() { return 1; }
void do_info();
// 函数:获取人物造型
int get_char_picid() { return 7415; }
void do_exchange(string sArg);
void do_... | [
"hothienan1993@gmail.com"
] | hothienan1993@gmail.com |
b901ee764659693615e802740888d232f011383a | 2e6a7a837aa9657b7a9aded2eda3b860074f1faa | /src/interp.c | 91affb576a7fe92087c69cf74860f4da7e258846 | [] | no_license | ptrayal/dungeonworld | c87233b0d51db3c1056cc63c052f177504a03821 | 57f2352232eb1f8fe48cca317502e18e595e8ffc | refs/heads/master | 2021-01-17T11:48:25.243176 | 2019-03-28T15:55:48 | 2019-03-28T15:55:48 | 9,076,959 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 28,495 | c | /***************************************************************************
* Original Diku Mud copyright (C) 1990, 1991 by Sebastian Hammer, *
* Michael Seifert, Hans Henrik St{rfeldt, Tom Madsen, and Katja Nyboe. *
* *
* Merc Dik... | [
"ptrayal@gmail.com"
] | ptrayal@gmail.com |
ec92441204d264329ae61e114211f41a1182c8e5 | 9dfd71bc2512d7bdfff10abbe0e2a4c114d1ecb5 | /src/kapi/msys.h | d915d925366a98cd579195865dfdeb8a036228d1 | [
"BSD-3-Clause"
] | permissive | jaytlang/asys | d043618ed974881cfc8b7c85e386f58bd20de525 | af549ec607b7db965441984e06d70919c1c375a9 | refs/heads/master | 2023-03-17T19:10:24.128555 | 2021-01-28T19:42:57 | 2021-01-28T19:42:57 | 325,953,409 | 1 | 1 | BSD-3-Clause | 2021-03-27T00:52:28 | 2021-01-01T09:53:24 | C | UTF-8 | C | false | false | 1,250 | h | #ifndef INC_KAPI_MSYS
#define INC_KAPI_MSYS
/* Trampoline page. Gets registered at
* system startup, used in msys/psys.
*/
extern char *utrapaddr;
extern char *kernelstack;
void registerutrap(char *addr);
void registerkstack(char *addr);
/* Kernel page table.
* Unsigned long because it's
* an array of PPN + flags... | [
"jaytlang@mit.edu"
] | jaytlang@mit.edu |
1e7fe225f114d46037d2d380353bb886a66a8e9d | f48c474406eb50af2cdf742608fb11a7336115a9 | /uitron/LibExt/LibExt_src/DevCamIQ/iq_param/iq_param_imx117_evb/iq_param_mode_imx117_evb.c | 4674c604051e6c901aa32746df1ffd48b408e3c1 | [] | no_license | vaizmanai/bsp_nt680 | 8b9f4f6aa488241a12a614d0592f597d5cea708a | 57d4ddceb024a12b1416148ee908b332b7662e02 | refs/heads/master | 2022-12-15T17:42:30.108303 | 2020-09-15T09:44:44 | 2020-09-15T09:44:44 | 295,661,568 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,408 | c | #ifndef _IQ_PARAM_MODE_IMX117_EVB_C
#define _IQ_PARAM_MODE_IMX117_EVB_C
#include "iq_param_common_imx117_evb.h"
static SENSOR_MODE_PARAM mode_table[IQS_PARAM_TABLE_MAX]= {
NULL,
iq_param_imx117_evb_table1_init, //IQS_PARAM_TABLE1
NULL, ////IQS_PARAM_TABLE2
};
static iq_param_table mode2tbl[SENSOR_MOD... | [
"rs15217039407@outlook.com"
] | rs15217039407@outlook.com |
3887ebf1f39eee70cf93b465e40fcf7830b82a7d | 12cb99a110192ef289174a687df2681a8e699eae | /theFive_app-rtt/Libraries/HAL_Drivers/bsp_StepMotor.c | 719c0e9b629fdd29975c89574a588399077c00d7 | [] | no_license | e190/theFive | e6c57aff35dff086901de60f586dccdba94eacea | 233c45c33bd9e246c5b01e86cbaf1aec82003b53 | refs/heads/master | 2020-03-28T22:28:08.071477 | 2018-12-20T02:57:33 | 2018-12-20T02:57:33 | 149,234,899 | 0 | 1 | null | null | null | null | GB18030 | C | false | false | 21,763 | c | #include <rthw.h>
#include <rtthread.h>
#include <rtdevice.h>
#include <board.h>
#include "bsp_timer.h"
#include "bsp_StepMotor.h"
TIM_HandleTypeDef htim_3;
MotorHandle_t* NowMotor = NULL;
void StopMotorTimer(MotorHandle_t* Motor);
#if MOTOR1_EN
MotorHandle_t Motor1;
static void M1_CCW(GPIO_PinState _bc);
static ... | [
"e190@163.com"
] | e190@163.com |
35b43af91aaea1c7e4dd7eb75f4a884fa16ae72d | 934f7ba52f4856129effe9948d4de5573307c776 | /legion cfg.h | 89aefd85315b0b45a91384f50369b5060bf65d7f | [] | no_license | FluffyQuack/JA2-113 | 9663176a66610e7685e953aafe66b9fdfad0e474 | a53fb01b69ec12296b6022613e978ba713b90c32 | refs/heads/master | 2023-05-05T08:05:41.594371 | 2021-05-18T15:17:25 | 2021-05-18T15:17:25 | 368,576,923 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,229 | h | #ifndef _LEGION_CFG_H
#define _LEGION_CFG_H
#include "soldier profile type.h"
extern void LoadGameLegionOptions();
typedef struct
{
BOOLEAN BorderTown;
BOOLEAN BorderMine;
BOOLEAN BorderTeams;
BOOLEAN BorderMilitia;
BOOLEAN BorderAirspace;
BOOLEAN BorderItem;
BOOLEAN EnemyXML;
BOOLEAN... | [
"git@fluffyquack.com"
] | git@fluffyquack.com |
4ecd6740ecf0de58e6f3d3bbecc0b9bde41daa00 | 11a371d96be507e0725b7c115473d6d41c756b64 | /Src/usbd_desc.c | 42112e64c7146c4e30ff872b435d784aae877a30 | [] | no_license | siposroland/DIGITAL-IO-MODULE-Software-development-for-functional-tester-system | 7b2ca09d06096ee911b4886138ac94c668dc92d6 | 182f8cfc66d69654bc356748bc54be751804c742 | refs/heads/master | 2020-05-31T12:14:44.313023 | 2019-06-04T20:57:12 | 2019-06-04T20:57:12 | 190,276,598 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,470 | c | /**
******************************************************************************
* @file : usbd_desc.c
* @version : v1.0_Cube
* @brief : This file implements the USB device descriptors.
******************************************************************************
* This notice a... | [
"siposroland97@gmail.com"
] | siposroland97@gmail.com |
8ed2fb77ad65ebbeccfbf4028c00b0fe0604e2ee | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/41fd19e8-9815-4297-9d5b-1d142c947d44.c | 8f9940589da1bd7a07ff84985e00851ad1524825 | [] | no_license | nmharmon8/Deep-Buffer-Overflow-Detection | 70fe02c8dc75d12e91f5bc4468cf260e490af1a4 | e0c86210c86afb07c8d4abcc957c7f1b252b4eb2 | refs/heads/master | 2021-09-11T19:09:59.944740 | 2018-04-06T16:26:34 | 2018-04-06T16:26:34 | 125,521,331 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 594 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=14;
int k;
int l;
k = 53;
l = 64;
k = i-j;
l = i/j;
l = j/j;
l = i-j;
l = l-j;
k = k-k*i;
//variables
//random
/* START VULNERABILITY */
int a;
int b[55];
int c[20];
a = 0;
while ... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
2d07cad63cc6dd68c2eff5d12d7ebd3e673f6cda | 68fac5700813376b3dbb3fb7a105d696256a3532 | /HideDebugger/HideDebugger.h | da2a252b3627f2a613364bbe1f03d05c2439908c | [] | no_license | nihilus/uberstealth | b0a970ed7da6f6641e547f3d1ec16abff3701e39 | ad6576ae582d5345707dfded35d4aeaa87475779 | refs/heads/master | 2016-09-06T14:46:19.223149 | 2014-09-14T00:15:34 | 2014-09-14T00:15:34 | 23,511,166 | 15 | 6 | null | null | null | null | UTF-8 | C | false | false | 683 | h | // The following ifdef block is the standard way of creating macros which make exporting
// from a DLL simpler. All files within this DLL are compiled with the HIDEDEBUGGER_EXPORTS
// symbol defined on the command line. this symbol should not be defined on any project
// that uses this DLL. This way any other project ... | [
"jan.newger@newgre.net"
] | jan.newger@newgre.net |
3f9dc4a45619654e6ad242f84f4975be7ef7de61 | f026cb616ef14bae15a1d251ca6dbe0f55016d9c | /linux/7937.c | c2b4bc8ff7f249fadcf3dc3948484643f3cd7589 | [] | no_license | jajajasalu2/cocci-lkmp-c-files | 3eb7d451929dca5cb6beb56aabd69fe3f7fc176c | 5da943aabe1589e393a131121dbf8e7a84b3cf2a | refs/heads/master | 2020-12-02T17:30:14.411816 | 2020-01-29T08:36:30 | 2020-01-29T08:36:30 | 231,053,574 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,465 | c | cocci_test_suite() {
unsigned long cocci_id/* drivers/net/usb/ax88179_178a.c 970 */;
const struct net_device_ops cocci_id/* drivers/net/usb/ax88179_178a.c 952 */;
struct sockaddr *cocci_id/* drivers/net/usb/ax88179_178a.c 933 */;
struct net_device *cocci_id/* drivers/net/usb/ax88179_178a.c 902 */;
netdev_features_... | [
"jaskaransingh7654321@gmail.com"
] | jaskaransingh7654321@gmail.com |
132f8930ae7ee0304ee753aeafc5fff411767dca | 8ad0abccef01b4ad85cbf1cd62fb700ee9e25422 | /extension/mutex/include/kernel.h | b2e59d42f6a01d19e94e96a8373556e266a46cf8 | [] | no_license | kikaiken/Toppers_F446reNucleo | 58f5163f9705e4fd822c462084e2b6f97d608f9c | 15d2133c4c9cec86d884ca4f77f445b8052eaf62 | refs/heads/master | 2020-03-30T09:47:30.870714 | 2018-10-08T17:35:24 | 2018-10-08T17:35:24 | 151,092,402 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 19,840 | h | /*
* TOPPERS/ASP Kernel
* Toyohashi Open Platform for Embedded Real-Time Systems/
* Advanced Standard Profile Kernel
*
* Copyright (C) 2000-2003 by Embedded and Real-Time Systems Laboratory
* Toyohashi Univ. of Technology, JAPAN
* Copyright (C) 2004-2014 by Embedded and... | [
"g.m.eater34@gmail.com"
] | g.m.eater34@gmail.com |
031cb2ae9795a85d69cafa0969257acba9708dfe | 90df40c3272d6063dd8cadc46a4c5742b03e3c0c | /src/boot-class/lib/boot-class/0001000002000188/protected-all.h | c601c2698875b44d1f4c1815325cd414e03af417 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | yoshiylife/OZonUnix | 2026b86c82ab41930642ab7975c63b0605eaeef6 | 3903823a70d1b8ed231dea0b89136702a5063e53 | refs/heads/master | 2020-05-20T06:02:50.568176 | 2016-02-18T19:03:39 | 2016-02-18T19:03:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 755 | h | #define _PROTECTED_ALL_0001000002000188_H
#ifndef _OZ0001000002000188P_H_
#define _OZ0001000002000188P_H_
#define OZClassPart0001000002fffffd_0_in_0001000002000187 1
#define OZClassPart0001000002fffffe_0_in_0001000002000187 1
#define OZClassPart0001000002000187_0_in_0001000002000187 0
typedef struct OZ0001000002000... | [
"yoshiylife@gmail"
] | yoshiylife@gmail |
3d5a13d0d9de80721afedba32efe504d12175e16 | 2079ff0bfa752ac982b10d3304a0a224bc20e944 | /native/StubPreamble.h | 5d0816fc75fe2818a7ecadc3afde97db74d9f206 | [] | no_license | Elisabitao/exo-training | 32be8bca0257110b7fcf4df7313a9e8eb1a5917a | 414c2efb6c3f8b58331312e7bdfcecfa1a59b3dd | refs/heads/master | 2021-01-18T07:49:29.781846 | 2012-06-27T11:59:12 | 2012-06-28T11:06:07 | 62,512,864 | 1 | 0 | null | 2016-07-03T19:55:13 | 2016-07-03T19:55:11 | null | UTF-8 | C | false | false | 1,090 | h | /*
* @(#)StubPreamble.h 1.6 96/11/23
*
* Copyright (c) 1995, 1996 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the confidential and proprietary information of Sun
* Microsystems, Inc. ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only... | [
"haint@exoplatform.com"
] | haint@exoplatform.com |
5ccbd27854856ae28048a90d111baab84f132b0d | c7b6e97e145cdf17787283ea2cae5c2198853f29 | /include/md4.h | 1742830d18d14df4f0eb2d7e2e17f3a0c421ed67 | [] | no_license | shivshankardayal/Universal-C-C-- | 36640ced556f52893f906d8123ddbe5ce73f5d74 | cead882b61c280096cabea640492aebdb9bc1ff1 | refs/heads/master | 2016-09-05T23:03:23.442410 | 2012-09-23T12:15:17 | 2012-09-23T12:15:17 | 2,559,971 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,813 | h | /* $NetBSD: md4.h,v 1.2 1997/04/30 00:44:49 thorpej Exp $ */
/*
* This file is derived from the RSA Data Security, Inc. MD4 Message-Digest
* Algorithm and has been modified by Jason R. Thorpe <thorpej@NetBSD.ORG>
* for portability and formatting.
*/
/*
* Copyright (C) 1991-2, RSA Data Security, Inc. Creat... | [
"root@myhost.(none)"
] | root@myhost.(none) |
44a1069b4c13b2b4b8ec257a2e51a39a29b530cc | 1e074e828ca4bd5e4ee239c81745b6b2b818a6c7 | /apv5sdk-v15/autelan/aquila/wlan_210/lmac/ath_dev/ath_main.c | 95ade24a82d59ba54e812f30220049109b40e4b7 | [] | no_license | hades13/apv5sdk-v15 | 51698f727b17f0cc05cbfd0df6ffff3da31d5b6e | 56b8a22a93e026580ecc8b33d18267e4ace4e02a | refs/heads/master | 2020-03-18T11:34:29.809253 | 2016-05-03T10:45:27 | 2016-05-03T10:45:27 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 345,637 | c | /*****************************************************************************/
/* \file ath_main.c
** \brief Main Rx/Tx code
**
** This file contains the main implementation of the ATH layer. Most member
** functions of the ATH layer are defined here.
**
** Copyright (c) 2009, Atheros Communications Inc.
**
** Perm... | [
"zhangsiyu@debian.suns"
] | zhangsiyu@debian.suns |
9ebff41c317e6ca65d3554e6bb927d94e428111e | 7b55cacf46bf2fd6298315bccfa4b6f0375e3865 | /src/external/bsd/libpcap/dist/inet.c | f14ea1d1735d010da5cbe3ade5a9bad5f1005d20 | [
"MIT",
"LicenseRef-scancode-bsd-3-clause-jtag",
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | libos-nuse/frankenlibc | 7f33a86f277ea13eeae573e0339b03c5e2a9ff58 | b2e9db0084847aaa63fcddce2f5bf2e0e43669d5 | refs/heads/lkl-musl | 2021-01-21T23:30:07.179889 | 2018-06-21T07:46:36 | 2018-08-14T03:52:22 | 47,620,000 | 9 | 6 | NOASSERTION | 2019-02-21T14:53:00 | 2015-12-08T12:13:28 | C | UTF-8 | C | false | false | 30,998 | c | /* $NetBSD: inet.c,v 1.3 2015/03/31 21:39:42 christos Exp $ */
/* -*- Mode: c; tab-width: 8; indent-tabs-mode: 1; c-basic-offset: 8; -*- */
/*
* Copyright (c) 1994, 1995, 1996, 1997, 1998
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, wit... | [
"justin@specialbusservice.com"
] | justin@specialbusservice.com |
a2d3fde35e6717a9b6dfc99ed18621c52c667b08 | da886ac0e177893cdc7559da7fe397f475da547c | /testing codes/Embedded/keypad.h | 7d2b389593b3399e161e857445742084def3e64a | [] | no_license | G-P0/Graduation-project | 789937a64b847c0863001b0a518e5918ebbfae78 | 25d57f2c0e86a3faad672755f419758642e24000 | refs/heads/master | 2021-09-18T05:28:07.794550 | 2018-07-10T06:27:08 | 2018-07-10T06:27:08 | 110,237,117 | 0 | 2 | null | 2018-07-04T07:57:48 | 2017-11-10T10:54:15 | PHP | WINDOWS-1252 | C | false | false | 676 | h | /*
* keybad.h
*
* Created on: ??þ/??þ/????
* Author: Khalid
*/
#ifndef KEYBAD_H_
#define KEYBAD_H_
#include "types.h"
#include "micro_config.h"
#include "common_macros.h"
/************************** Module Configurations **********************/
/* Keypad configurations for number of rows and columns */
#... | [
"abdalmoniem.sami211@el-eng.menofia.edu.eg"
] | abdalmoniem.sami211@el-eng.menofia.edu.eg |
5b8c7cf06fb04223518d5599a47cdd1f5b1392a5 | bd69a9d3db41771f04e55a0c90d7a9a5eff2a9ad | /script_rel/av_big_cat_ambush_deer.c | 2f4e73360b429925d297a1afe034808d4414a676 | [] | no_license | scx1125/RDR2-Decompiled-Scripts | 29ace5d22d874534b88f098fc68072e9222fe2c0 | 2d23c1103bf8e7ca789aeadd4cd174e198e7b920 | refs/heads/master | 2022-09-21T22:54:17.126994 | 2020-05-27T11:41:25 | 2020-05-27T11:41:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 151,685 | c | #region Local Var
var uLocal_0 = 0;
var uLocal_1 = 0;
var uLocal_2 = 0;
var uLocal_3 = 0;
var uLocal_4 = 0;
var uLocal_5 = 0;
var uLocal_6 = 0;
float fLocal_7 = 0f;
float fLocal_8 = 0f;
int iLocal_9 = 0;
int iLocal_10 = 0;
struct<10> Local_11 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } ;
var uLocal_21 = 0;
var uLo... | [
"jaykoza@jaykoza.de"
] | jaykoza@jaykoza.de |
de3cec5361ca9985f315d4bd876a427c9917958b | 6dc16ea694c442f68b6b403fe07cf8f2a2638a5c | /Zigbee/cc2430/mine_project/v1/driver/Station/hal_dma.c | e1f7b17a9e07f709c87a682d51038c6410f5ca53 | [] | no_license | hezfproject/TofCode | 6ac411c36e7c51753a9ba8f7745176eebdfe26b8 | 617f4038f38bc3a3093e1d17bb4310ff9e47673a | refs/heads/master | 2020-04-26T03:13:44.490606 | 2019-03-01T08:27:55 | 2019-03-01T08:27:55 | 173,260,210 | 0 | 4 | null | null | null | null | MacCentralEurope | C | false | false | 3,950 | c | /**************************************************************************************************
Filename: hal_dma.c
Revised: $Date: 2011/04/21 23:22:11 $
Revision: $Revision: 1.1 $
Description: This file contains the interface to the DMA.
Copyright 2007 Texas Instruments I... | [
"981715113@qq.com"
] | 981715113@qq.com |
abc6f50827ef4d6ab0d4760324d7e43b77c651a3 | b040e13d173bc64b4794233169b58ef65fd3a092 | /HARDWARE/timer/timer.h | 87cb56761e8df5328bdb5e3c5dccaaf27f897d10 | [] | no_license | BerryBlackBlue/AR_JY01_MCU_AuxiliaryBrake | 108e368533cb3b22529520a68004b24765659087 | d32a5e7cb02a02361c91c35f8525e8a8f1cc2b06 | refs/heads/master | 2023-04-23T10:53:16.414518 | 2021-05-11T09:31:00 | 2021-05-11T09:31:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 142 | h | #ifndef __TIMER_H
#define __TIMER_H
#include "sys.h"
extern u16 LRSpeed,RRSpeed;
void Timer4_Init(void);
void Timer3_Init(void);
#endif
| [
"1334876416@qq.com"
] | 1334876416@qq.com |
6572b3a94f5372072787eaed9b42312662f00615 | dad3a08016832cd1f358cdc10a0da726933dbc1e | /unitgenerators-20/_unitGeneratorInclude.h | a83b0ab91b43bc5551236981fd4a5b0035277475 | [] | no_license | ddp/NeXTDSP | b6f637309befc6de90d116c5388403fcfc9d426f | 26d2b31a6fb4bc16d55ebe17824cd2d6f9edfc7b | refs/heads/master | 2023-07-22T08:06:39.601200 | 2021-08-19T20:56:39 | 2021-08-19T20:56:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 267 | h | #define _MK_NOSET MAXDOUBLE
#define TWO_TO_M_23 0.00000011920928955078125
#define _MK_UGOPTIMIZE 1 /* Set to 0 and recompile to disable optimization */
extern double _MKUGLog2 (double x);
extern BOOL _MKUGIsPowerOf2 (int n);
extern int _MKUGNextPowerOf2(int n);
| [
"trnsz@pobox.com"
] | trnsz@pobox.com |
92e2238da249599f69d7492cbc7cb091bde76bef | ebe419f770e2e49222add4cace5d457018b29845 | /kernel/x86/include/kernel/x86/thread.h | 1377e9e969e5b9b0e0837aba207b9980e3768aea | [
"ISC"
] | permissive | zenhack/zero | d0d73284a60d0aa241fbd6d196895b597bebadc9 | 8d05481a9014b0eaf847bc1e616448afb5a43599 | refs/heads/master | 2023-09-04T00:28:24.673339 | 2017-12-23T23:09:39 | 2017-12-23T23:09:39 | 37,175,839 | 4 | 1 | null | null | null | null | UTF-8 | C | false | false | 300 | h | #ifndef KERNEL_X86_THREAD_H
#define KERNEL_X86_THREAD_H
#include <stddef.h>
#include <kernel/port/data.h>
#include <kernel/x86/regs.h>
typedef struct X86Thread X86Thread;
struct X86Thread {
List l;
Regs *ctx;
void *stack_end;
};
X86Thread *mk_thread(void (*entry)(void *), void *data);
#endif
| [
"ian@zenhack.net"
] | ian@zenhack.net |
380e0cbbe8d7a9ac8360c8bc3b7c2277f4d3aa52 | e54578c9db6208b2596001b5b144f031d03ae90a | /demos/单词长度.c | e637bf80b51cd9bae877e991c6fb7d451810dcc6 | [] | no_license | msq0313/C | 5e4ffd2d927c657f56d5e038a0bf578ddbbb1231 | 466c031569b7227695dda8bac80686f9fc69d1e6 | refs/heads/master | 2020-06-01T17:09:23.027388 | 2019-07-11T12:39:56 | 2019-07-11T12:39:56 | 190,860,113 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 306 | c | #include<stdio.h>
#include<stdlib.h>
#include<string.h>
main()
{
char a[100];
int i=0,len=0;
while(a[len]!= '.')
{
scanf("%s",&a);
if(a[0] == '.') break;
// printf("%s",a);
len=strlen(a);
if(a[len-1] == '.')
{
len--;
printf("%d",len);
}
else
printf("%d ",len);
}
return 0;
}
| [
"513299488@qq.com"
] | 513299488@qq.com |
205499a50bdaf3c41a0d625d1f27f08c137a742b | 7eff99d918eca4929f301238e26081d31fefca26 | /Xpress_PIC16F18855/CIP_Blink.X/mcc_generated_files/tmr2.c | 7082646024cdb0b095ab9dd8ff2f6f9d21556390 | [] | no_license | wushifeng2017/Microchip-Dev-Boards | b0a83d0dd4e295c74a8141cc0d60284216d33965 | 6e7cd74ba0bd8448b1f84c26c87f60e558260722 | refs/heads/master | 2020-06-22T15:00:31.702133 | 2018-03-31T02:08:44 | 2018-03-31T02:08:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,962 | c | /**
TMR2 Generated Driver File
@Company
Microchip Technology Inc.
@File Name
tmr2.c
@Summary
This is the generated driver implementation file for the TMR2 driver using MPLAB(c) Code Configurator
@Description
This source file provides APIs for TMR2.
Generation Information ... | [
"mkhuthir@gmail.com"
] | mkhuthir@gmail.com |
5af058fbef72dccef28efa6408f0aeff436d5159 | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/c-litmus-CSEQ/_cs_MP+dmb.sy+addr-ctrl-ctrlisb-[fr-rf]-ctrl.c | 758068c0868812fcc8fae38347bdcfb848c5f841 | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C | false | false | 34,406 | c | /*
* generated by CSeq [ 0000 / 0000 ]
*
* instance version {}
*
* 2023-06-04 11:39:22
*
* params:
* -i /home/osboxes/llvm_bmc/llvm_bmc/examples/litmus/c/run-scripts/../c-litmus-CSEQ/MP+dmb.sy+addr-ctrl-ctrlisb-[fr-rf]-ctrl.c,
*
*/
#define __cs_MUTEX_INITIALIZER -1
#define __cs_COND_INITIALIZER -1... | [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
7e486cde8c27f9f404715c6150e842d70a1a82fb | bf7320096a2e823237a975157aca79e8e28f9d18 | /PA2/csc501-lab2/lib/libxc/doprnt.c | ab3a367ec3bcac6bda56f051da2c5dda5b94b9a9 | [] | no_license | architkwatra/CSC-501-Operating_Systems | e8dd396efe0cc0c885691eafcf6d8f19b9ce0fca | bb33c15a34224414111ea83c966a6a54a8a1d88d | refs/heads/master | 2023-03-06T16:11:42.714787 | 2021-02-21T18:53:54 | 2021-02-21T18:53:54 | 292,133,150 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,690 | c | /* doprnt.c - _doprnt, _prt10, _prtl10, _prt8, _prtl8, _prt16, _prtl16 */
#define MAXSTR 80
#define LOCAL static
LOCAL _prt10(), _prtl10(), _prt8(), _prtl8(), _prt16(), _prtl16(), _prt2(),
_prtl2();
/*------------------------------------------------------------------------
* _doprnt -- format and writ... | [
"qrchit.kwatra@gmail.com"
] | qrchit.kwatra@gmail.com |
f23ec922879c5f325b126a3543f50877d69f044e | 05efcc2b52872b257032d90dfa0ee11283e52fbe | /vim-8.1.0875/src/vim-basic/vimrun.c | 5a1e8c68f1f30e7b94619d054082865b2716a50b | [
"Vim"
] | permissive | Delcior/linux3 | b72a1c2561d920a01e037c69f159daee043dfcb9 | 1dd601ad3155dc2673766aca52fc5d7f957ca83c | refs/heads/main | 2023-06-01T10:06:10.865136 | 2021-06-09T21:52:44 | 2021-06-09T21:52:44 | 375,486,019 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11 | c | ../vimrun.c | [
"root@localhost"
] | root@localhost |
85e5766411666aad65538dbe83e4731e59f544bd | f7014fad50926fe0f016143461e7350d9734bd5e | /Practica4/practicacdos.c | 24a132591f9aa957972732c8e9dd730041e479d1 | [] | no_license | EduardoCastro15/Sistemas-operativos | f8e354c5290109a9bf4fa076253c62e67e8475e6 | 329f411092f32a2c0e264a4794eba6b0d1977d6f | refs/heads/main | 2023-07-06T13:05:33.281821 | 2021-08-02T02:50:55 | 2021-08-02T02:50:55 | 391,787,038 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,139 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <string.h>
int pid=1;
int main(int argc,char *argv[]){
int status;
int i=0;
char cadena[50];
char *final[50];
char delimitador[] = " ";
char *varprog="./a";
system("clear");
do{
i=0;
final[i]=(c... | [
"noreply@github.com"
] | EduardoCastro15.noreply@github.com |
d5e79818c4540f596743eaf01981d1dd5f390b1e | aaee201d7bf44e7cde083c204c8c0a081acece2d | /component/common/media/framework/mmf_sink_modules/mmf_sink_rtsp2.c | 7eaac0ea971aff8c04e5c139a02bc45fd842de3b | [] | no_license | ddkity/TY_RTL871x_SDK_DEV | fda04c89d4995945479665eec6e213b51bf24dc8 | 562842c4a6fa777ac97f2661a4927eee1e62a7e7 | refs/heads/master | 2021-06-05T01:46:19.160583 | 2018-09-14T07:08:10 | 2018-09-14T07:08:10 | 148,107,950 | 0 | 4 | null | 2020-03-06T21:48:47 | 2018-09-10T06:17:58 | C | UTF-8 | C | false | false | 7,325 | c | #include "mmf_sink.h"
//rtsp header files
#include "rtsp/rtsp_api.h"
#include "sockets.h"
#include "lwip/netif.h"
#define STREAM_FLOW_ID_BASE 0
static u32 stream_flow_id_bitmap = 0;
static _mutex stream_flow_id_bitmap_lock = NULL;
static int channel_idx=0;
//static int *codec_chennel_map; //
//static s... | [
"278301723@qq.com"
] | 278301723@qq.com |
60e6bf26029caa641dffc3b2e55d0067bd6f873d | 5e1cb34ab4330c3be818f3ca5b195471d16a5053 | /VirtualSense/DJ_VirtualMachine.1.0/darjeeling.1.1/src/vm/distro/sky/config.h | c319149f6fae9917653ee25d03e606b6484a1f8d | [
"BSD-3-Clause"
] | permissive | mikewen/virtual-sense | 0b958b0b3ce251ac79df8970af838ed29558d805 | c01de669737b791b81d75defeeab40a4ab63adf0 | refs/heads/master | 2020-05-19T11:56:58.483925 | 2013-08-02T12:44:18 | 2013-08-02T12:44:18 | 34,969,722 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,318 | h | /*
* config.h
*
* Copyright (c) 2008 CSIRO, Delft University of Technology.
*
* This file is part of Darjeeling.
*
* Darjeeling is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the ... | [
"Lattanzi@Griso"
] | Lattanzi@Griso |
ab50bcbbbb43162bde809ddfa21917a2b1a6e32b | cbc4fd1404b3068cf468ff9372b094faae903f9b | /client.c | 92c05c6581b75c0bc0c7f5f4d89c7bbfe70c6b3e | [] | no_license | Farid-Najar/A-primitive-Client-Server | c126f8bce9e9cd34266e8747a0afbbad22fd6e5e | c5005631ed7f3b35d59b37f1bd8df985e4fc1c1a | refs/heads/master | 2022-12-15T15:33:07.476298 | 2020-09-13T20:05:09 | 2020-09-13T20:05:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,225 | c | #include<unistd.h>
#include<stdio.h>
#include<stdlib.h>
#include<sys/types.h>
#include<sys/socket.h>
#include<netinet/in.h>
#include<netdb.h>
#include<string.h>
#define SIZE 100
#define PORT 9600
int main(int argc, char *argv[]){
/*
* Variables du client
*
* Déclarer ici les variables suivante... | [
"farid.najar98@gmail.com"
] | farid.najar98@gmail.com |
79cdc585e5c28d5266fe0388609bda5380661df9 | 95ffa66fc463877df1148ef18bece322161227c7 | /Light OJ/1433 - Minimum Arc Distance.c | a508079c4ce209b6c4df87fc5f99059a6bef4ce6 | [] | no_license | redwanh25/cpp | 3e23a6325eb27486bd5c1543f7b7cc1ec20798e9 | 836ac15b4e0d5c39e56921db4a7cf347dcfcc4b8 | refs/heads/master | 2021-04-18T22:12:33.039515 | 2018-07-20T21:25:25 | 2018-07-20T21:25:25 | 126,901,628 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 496 | c | #include<stdio.h>
#include<math.h>
#define pi acos(-1)
int main()
{
double ox,oy,ax,ay,bx,by,r,ab,acb,o;
long long i,j,n;
scanf("%lld",&n);
for(i=1; i<=n; i++){
scanf("%lf %lf %lf %lf %lf %lf",&ox,&oy,&ax,&ay,&bx,&by);
r=sqrt(pow((ox-bx),2)+pow((oy-by),2));
ab=sqrt(pow... | [
"noreply@github.com"
] | redwanh25.noreply@github.com |
b8259d0504537f0e6fc43796fef172d5139e15d0 | 8d5ef806f7bd9355593c0a8de786e7c203091b52 | /ibRunDates.C | 63a62c3e8a49f497bfb2335f26b00df8a4ee5438 | [] | no_license | dladams/duneproc | 40aa6926845ff3ef504a61a2ecfd1280c9fd29b6 | 4fe49f2e27e2abd95d79698d1fe8db5b6f9cc767 | refs/heads/master | 2023-04-28T03:05:37.414517 | 2023-04-24T15:40:56 | 2023-04-24T15:40:56 | 233,672,726 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 646 | c | // ibRunDates.C
//
// David Adams
// September 2020
//
// Return a map of date strings indexed by first run number in the range
// [irun1, irun2).
map<unsigned int, string> ibRunDates(unsigned int irun1, unsinged int irun2) {
const string myname = "ibRunDates: ";
map<unsigned int, string> rundates;
string sdir = ... | [
"dladams@bnl.gov"
] | dladams@bnl.gov |
b28d08b35f068ddd4d0dd38cf35175ee7cc9bc2c | 5a6e95ea550c1ab70933db273782c79c520ac2ec | /DDK/src/storage/tape/qic157/qic157.h | 80634699b7fee59034238856eb98ab4f4afad1cf | [] | no_license | 15831944/Longhorn_SDK_And_DDK_4074 | ffa9ce6c99345a6c43a414dab9458e4c29f9eb2a | c07d26bb49ecfa056d00b1dffd8981f50e11c553 | refs/heads/master | 2023-03-21T09:27:53.770894 | 2020-10-10T03:34:29 | 2020-10-10T03:34:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,060 | h |
/*++
Copyright (C) Microsoft Corporation, 1992 - 1998
Module Name:
qic157.h
Abstract:
This file contains structures and defines that are used
specifically for the tape drivers.
Revision History:
--*/
#ifndef _QIC157_H
#define _QIC157_H
//
// Internal (module wide) defines that symbolize
// non-Q... | [
"masonleeback@gmail.com"
] | masonleeback@gmail.com |
e252df772b8a7b94a5baa3764104ce1191f91a77 | 7a274ced744fb2f738177abb0e8b14c7775a4f08 | /docs/examples/gcc-4.4.0/libgfortran/generated/pack_c4.c | 5b69c98c8f0ca51055d12b363e1802cd581629ff | [
"MIT"
] | permissive | simright/py-fortranformat | fd29629ffa0ffcfab711fc5ce937afbf4447b92d | 5ca696e66f64eb80a1b1a4c1c0c95e8c1c518b9f | refs/heads/master | 2022-02-12T00:56:28.348625 | 2022-02-11T01:39:03 | 2022-02-11T01:39:03 | 208,394,817 | 2 | 3 | MIT | 2021-07-11T10:57:30 | 2019-09-14T05:40:38 | C | UTF-8 | C | false | false | 9,168 | c | /* Specific implementation of the PACK intrinsic
Copyright (C) 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
Contributed by Paul Brook <paul@nowt.org>
This file is part of the GNU Fortran 95 runtime library (libgfortran).
Libgfortran is free software; you can redistribute it and/or
mod... | [
"brendan@brendan-arnolds-macbook.local"
] | brendan@brendan-arnolds-macbook.local |
90f8c32f6cc22f05a887fe1fefd8e4da0241a6e6 | d4c519f08aca120a7655bd573c9b093680858d58 | /Vito's family.c | 52f6eb699274f2a7a85a307cee61c2f1a7a54d82 | [] | no_license | mcqueen7/CPE-Lv1 | 72de71f5ba4e512395d7837e90845224675b7a83 | e9f819ce9c4fdd347be90f5f756b781f877da2b6 | refs/heads/main | 2023-08-11T05:41:09.612275 | 2021-09-18T04:16:17 | 2021-09-18T04:16:17 | 391,364,126 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 729 | c | #define VitosfamilyOK
#ifdef Vitosfamily
#define _CRT_SECURE_NO_WARNINGS
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
int main() {
int n, a = 0, l = 0, s = 0, fs = 0;
int r[500] = { 0 };
scanf("%d", &n);
for (int i = 0; i < n; i++) {
memset(r,0,500);
a = 0;
s = 0;
fs = 0;
scanf("... | [
"noreply@github.com"
] | mcqueen7.noreply@github.com |
bc492a154d823e13534d8e5721f0da401329d37a | 711e5c8b643dd2a93fbcbada982d7ad489fb0169 | /XPSP1/NT/ds/ds/src/ntdsa/dblayer/dbisam.c | 85e83482b243a8ce9ed30fb64643d6d21cf1157e | [] | no_license | aurantst/windows-XP-SP1 | 629a7763c082fd04d3b881e0d32a1cfbd523b5ce | d521b6360fcff4294ae6c5651c539f1b9a6cbb49 | refs/heads/master | 2023-03-21T01:08:39.870106 | 2020-09-28T08:10:11 | 2020-09-28T08:10:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 115,212 | c | //+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1996 - 1999
//
// File: dbisam.c
//
//--------------------------------------------------------------------------
#include <NTDSpch.h>
#pragma hdrstop
#... | [
"112426112@qq.com"
] | 112426112@qq.com |
db4e92cef953b42b0a5ef9cb11a73ecc3d3a65dd | 7aeddd27b6ba7460c36e689b0e1c9c180c364142 | /c/read_ini_version_fgets.c | a04b8d768ce97b2db052f1034b4eae19ff03879f | [
"MIT"
] | permissive | bismog/leetcode | 98bb94bc53e13478d06863be06316b48372a76d5 | 13b8a77045f96e7c59ddfe287481f6aaa68e564d | refs/heads/master | 2021-06-27T07:37:00.968121 | 2019-04-09T02:36:40 | 2019-04-09T02:36:40 | 90,503,939 | 0 | 1 | null | 2017-09-16T20:21:25 | 2017-05-07T02:32:25 | Python | UTF-8 | C | false | false | 1,669 | c | #include "stdio.h"
#include "string.h"
int read_version(char *file)
{
FILE*fp;
char c1[100]="\0";
char c[10][100];
int i = 0 ;
char * p ;
int num[4]={0};
unsigned int VersionNo= 0 ;
if((fp=fopen(file,"r"))==NULL){
printf("open file[%s] failed \n",file);
return 0xff ;
... | [
"bismogg@zte.com.cn"
] | bismogg@zte.com.cn |
b201e1ea0b0671a1269e421fe91679011d23dace | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/fastsocket/kernel/sound/pci/hda/extr_patch_ca0132.c_dspio_get_response_data.c | 472a380859e6104fa4a8c515a57dc1de99376f7e | [] | no_license | isabella232/AnghaBench | 7ba90823cf8c0dd25a803d1688500eec91d1cf4e | 9a5f60cdc907a0475090eef45e5be43392c25132 | refs/heads/master | 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,293 | c | #define NULL ((void*)0)
typedef unsigned long size_t; // Customize by platform.
typedef long intptr_t; typedef unsigned long uintptr_t;
typedef long scalar_t__; // Either arithmetic or pointer type.
/* By default, we understand bool (as a convenience). */
typedef int bool;
#define false 0
#define true 1
/* Forward d... | [
"brenocfg@gmail.com"
] | brenocfg@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.