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
aec6677ab493df76380040e7cc344381b27fe5ce
2680790556c59c1f0fac0aa2cba39c1348fcb599
/twi.c
a2d9c664f8aef60d36ad41e8d4b744e5859b8b63
[]
no_license
ll0pez10/ATmega-microprocessors
4cd519b3eb400a2c36e1d1c9a33125aed62b771a
1b988fcbd2ce50d5fcae91329023497ec0d91655
refs/heads/master
2023-08-30T04:28:42.514443
2021-11-03T00:01:17
2021-11-03T00:01:17
null
0
0
null
null
null
null
UTF-8
C
false
false
3,686
c
#include "twi.h" #include "parametros_atmega.h" int read_reg_multiple(unsigned char* store, int regAdd, unsigned char count) { unsigned char i = 0; // send start condition TWCR = (1<<TWINT) | (1<<TWSTA) | (1<<TWEN); // wait to see of start condition has been transmitted while(!(TWCR & (1<<TWI...
[ "noreply@github.com" ]
ll0pez10.noreply@github.com
a735b5067b949c7520e8a05d1665dfb2f86c4009
a32bdfd371b7675b45ad934c93db566f2e91d197
/series07/quicksort.c
1f61362eba614570b10505f316743b54b6bf5b4e
[]
no_license
jolly-droid/EPROG_SS21
9ea80a255a2f6b8a3288361c287d32aa9289e05b
226b5831c8b59c1129b1bc1b8bd6677ed2b21d79
refs/heads/master
2023-05-28T13:13:49.981204
2021-06-23T09:26:05
2021-06-23T09:26:05
344,771,034
0
0
null
null
null
null
UTF-8
C
false
false
1,394
c
#include<stdio.h> #include <stdlib.h> void quicksort(double* arr,int,int); int main(int argc, char* argv[]){ int n; printf("\nInput number of elements: "); scanf(" %d",&n); double* arr = malloc(n* sizeof (double)); printf("\nInput values one by one: "); for(int i=0;i<n;i++) { scanf(...
[ "julia.autengruber@yahoo.com" ]
julia.autengruber@yahoo.com
2ac234f78ecd66f68dbcfc5d87090affacf6fec5
c5221e1cc6fe7e5b592948ed348eaf4fd06dcc27
/12.9/12.9.4/12.9.4.c
9dd440f170c8e0c192cd09c826ef01350e69529e
[]
no_license
Flamel-NW/C-Primer-Plus
3aa4ab0b085dcf2a59a187384f8163b8fa7b9ccf
6742dd2aa6b70a35f9e5d1713a7f807bb1cdf818
refs/heads/master
2020-09-16T07:51:20.311603
2019-11-24T07:28:03
2019-11-24T07:28:03
223,702,017
4
0
null
null
null
null
WINDOWS-1250
C
false
false
276
c
//ˇ¶C Primer Plusˇ·p410 12.9.4 #include <stdio.h> #define TIMES 5 static int times = 0; int function(void); int main(void) { int n; int i; for (i = 0; i < TIMES; i++) { n = function(); } printf("%d", n); return 0; } int function(void) { return ++times; }
[ "3267443627@qq.com" ]
3267443627@qq.com
fc689799e7a22288fa38e07e467ec6587cf9ae01
683eaacae146f88df2ffca934d68751b44006e65
/simple_shell_01.c
79a5eb52692054efccfa078df27f99d8d7575ef2
[]
no_license
HeidiKonswah/simple-unix-shell
f3f88f24f2f8bcba265bcf81f35d784ebf69a0ab
09a39790959f470fa3626c281e3f7c050cb2ce63
refs/heads/master
2022-04-21T07:27:47.676743
2020-04-22T08:25:14
2020-04-22T08:25:14
257,838,379
0
0
null
null
null
null
UTF-8
C
false
false
3,222
c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/wait.h> #include <string.h> #include <signal.h> //------------------ #define RL_BUFFSIZE 1024 //define a signal handler type which is a func accepting an int and returning void typedef void (*sighandler)(int); //first arg is the signal number, sec...
[ "noreply@github.com" ]
HeidiKonswah.noreply@github.com
3d6fc008a9aa5d8ebf4530f09ccd12d917ea592d
09385d6063b9067fa1d4837039299534d029d6bd
/libft/ft_substr.c
8331b412888da373cd3bdb8849ae7817fee57457
[]
no_license
andrewnikiforov/ft_minishell
babcf2dc509228b43759dd1f50e030b05f5a50fb
21ce27f8f2efd099075c0b2eaf13c500ffe06855
refs/heads/main
2023-08-01T07:20:50.777568
2021-09-12T13:31:47
2021-09-12T13:31:47
379,216,519
2
0
null
null
null
null
UTF-8
C
false
false
1,328
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_substr.c :+: :+: :+: ...
[ "omillan@mi-a3.msk.21-school.ru" ]
omillan@mi-a3.msk.21-school.ru
26ea4416b7897a349a6f5bed453f4b06d9c34a5a
f53d9f4442b7c042534196df71f650315a4c79ff
/Groupchat/s1.c
40c5ebd2154a03a36be2353ecbffd47997b6b968
[]
no_license
bhargavkathivarapu/CN
0ce136a574654f6d83c96b234af388723a45d2f3
0313bb341b958d632cbf610650c50e6dcade5b35
refs/heads/master
2021-01-17T10:22:22.102831
2016-05-11T15:38:35
2016-05-11T15:38:35
50,275,682
0
0
null
null
null
null
UTF-8
C
false
false
1,754
c
#include<stdio.h> #include<ctype.h> #include<unistd.h> #include<string.h> #include<netinet/in.h> #include<arpa/inet.h> #include<pthread.h> #include<signal.h> #include<stdlib.h> pthread_mutex_t mut; int fd[10]; int tfd[10]; int allocate(int nsfd) { for(int i=0;i<10;i++) { if(tfd[i]==-1) { tfd[i]=nsfd; break;...
[ "bhargavkathivarapu31@gmail.com" ]
bhargavkathivarapu31@gmail.com
c1107c766421e6e2d7cac0700c2a48e7708accef
d7952494f44c7430f3a1832fecd2499030c5d663
/1079 [기초-종합] 원하는 문자 입력할 때까지 반복 출력하기.c
8ad5408346115076847953776f93a6c5d5fb518d
[]
no_license
sungyun5423/Code-Up-Algorithm
0f109d1ca783159930e9776e5396d371c171bf0c
b1c4abfd8e198bc054caeab3e2d7423a720dbe8c
refs/heads/master
2020-05-01T10:22:17.762364
2019-04-06T13:55:42
2019-04-06T13:55:42
177,401,792
1
0
null
null
null
null
UTF-8
C
false
false
259
c
#include <stdio.h> int main() { char a, good[2001]; int i, count = 0; while(a != 'q') { scanf("%c", &a); good[count] = a; if(a != ' ') count++; } for(i = 0; i < count; i++) printf("%c\n", good[i]); }
[ "noreply@github.com" ]
sungyun5423.noreply@github.com
b171cd14381d178c9e12333927a0b00695894005
6b340cc662f7be85c3dbc48f6d55dd349acd66b7
/libraries/libwidget/Model.c
df9a59d10d79492934cf90a1e15ed683e6c1742f
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ozkxr/skift
998e70755c7ea4f1cdcb78fdfbf5c15c325ec6b5
17ddd638492587a2a4af79f66840606e95027f32
refs/heads/master
2022-07-08T11:59:43.195695
2020-05-10T12:01:08
2020-05-10T12:01:08
null
0
0
null
null
null
null
UTF-8
C
false
false
1,506
c
#include <libsystem/assert.h> #include <libwidget/Model.h> void model_initialize(Model *model) { model_update(model); } void model_update(Model *model) { if (model->model_update) { model->model_update(model); } } Variant model_data(Model *model, int row, int column) { assert(row >= 0 && r...
[ "nicolas.van.bossuyt@gmail.com" ]
nicolas.van.bossuyt@gmail.com
c49249650b008d7da6ff2a082a55040a0b4d66ee
b97bef6eba224dc5f4cefa7208eaf388f4fa4f28
/day3/other/lock-example.c
4f41c93bfcbddaae0ee6492f31b551002d0d0fde
[]
no_license
mkbera/bootcamp2018
846ca19883c436c25d7e8917ee14739227f67501
c42e3be280e0d906069ddf2d6271b4c824def24b
refs/heads/master
2020-04-13T10:45:51.931708
2018-12-30T13:15:00
2018-12-30T13:15:00
163,152,644
1
1
null
null
null
null
UTF-8
C
false
false
2,413
c
#include<stdio.h> #include<stdlib.h> #include<pthread.h> #include<assert.h> struct account_t{ long ac_balance; long num_transactions; pthread_mutex_t th_mutex; }; void *do_deposit(void *arg){ long i; struct account_t *account = ...
[ "deba.cse.iitk.ac.in" ]
deba.cse.iitk.ac.in
15fa62f8c8ca645b53d88ad729d95c7eb7f9371f
2ca1a259154e30c1bf79a114955994f531c2e0e4
/sample/c99/ruby_interpreter_c99/ext/fiddle/libffi-3.2.1/testsuite/libffi.call/nested_struct4.c
f4b7033ee351e0a9a4a5064347201eb1681aee7e
[]
no_license
programming-lang-lab/Yacc-to-PEG-translator
3ed5515e3ac9422069d3977eb07e14ae96dcf659
47d89593b8dfe90b58480a1a67d2685c999ee30e
refs/heads/master
2021-07-17T08:27:35.989438
2020-07-05T09:39:47
2020-07-05T09:39:47
187,570,281
0
0
null
null
null
null
UTF-8
C
false
false
22,437
c
typedef long unsigned int size_t; typedef int wchar_t; typedef float _Float32; typedef double _Float64; typedef double _Float32x; typedef long double _Float64x; typedef struct { int quot; int rem; } div_t; typedef struct { long int quot; long int rem; } ldiv_t; typedef struct {...
[ "h.ishii83@gmail.com" ]
h.ishii83@gmail.com
2f2f479ab6808bd356d0088b5bbfc2133fd1b128
4967385ca7b94b2b75f7426f0cbccb081eb987b0
/Final/Letra.h
488e51f7e43f2a61bde6d49826dda6c745b51059
[]
no_license
elyfalcon/Finales_labo1
5cd1d26983bf13373f4d5d18410a21a4aa7d598f
259fe480eeaf277d8a0196a1a70e032392d9ec36
refs/heads/master
2020-03-24T12:19:35.199737
2018-08-09T00:10:34
2018-08-09T00:10:34
142,711,417
0
0
null
null
null
null
UTF-8
C
false
false
180
h
#ifndef LETRA_H_INCLUDED #define LETRA_H_INCLUDED typedef struct { char letra; char nombre[21]; int vocal; int consonante; }eLetra; #endif // LETRA_H_INCLUDED
[ "elyfalcon@yahoo.com" ]
elyfalcon@yahoo.com
c8203796efd694102f9b416f0b863c06296606cd
0ab4a300b255e608bf41e24cb9a9910a9b06494e
/Lab4_Prob2_AnuKulshrestha.c
dffd59288125350341829ba26e0ffa8dba202f57
[]
no_license
anukul0684/CBasicProgrammes
305939db8ea2a814b624d05c3145310ad323f93e
54a584cc3cfe2422e970bdf191983162d8f44045
refs/heads/main
2022-12-28T21:28:10.651054
2020-10-16T19:57:21
2020-10-16T19:57:21
304,721,818
0
0
null
null
null
null
UTF-8
C
false
false
1,370
c
#include <stdio.h> void main(){ int n=0; printf("\nHow many numbers you want to sort? Please enter the number: "); scanf("%d", &n); int arr[n]; if(n) { if(n>1) { for(int i=0; i<n; i++) { printf("\nEnter a value: "); ...
[ "noreply@github.com" ]
anukul0684.noreply@github.com
902807c7ffcab66ee0929ea86cd3f3cbcfd06a38
a39d0684a46ea9eee9dcf36a21c240ab765638b5
/Stacks & Queues/C/pqueue.c
d0452090c04b9113eeb9dede0c9e31a87a65e81c
[ "MIT" ]
permissive
malvika-sinha/DSA-Questions
c4ee4c888820845b1072bef849725a93b02b512a
fa5b1105a6bede84068c12a24bd2fbbfc614f8e7
refs/heads/main
2023-08-31T00:30:23.795097
2023-08-21T14:06:52
2023-08-21T14:06:52
413,380,202
2
0
MIT
2021-10-04T10:47:18
2021-10-04T10:47:18
null
UTF-8
C
false
false
3,749
c
/* FIFO */ #include <stdio.h> #include <stdlib.h> typedef struct node { int data; int priority; struct node *next; } Node; typedef struct queue { Node *front, *rear; int size; } Queue; void queue_destroy(Queue *); Queue *queue_initialise(); void enqueue(Queue *, int, int); Node *create_node(int, ...
[ "noreply@github.com" ]
malvika-sinha.noreply@github.com
a4c874429b4a0ef480a73b9cab3c88dc441353ba
3dcceb6563e83868a57a065c5c57dbb9ec2ee64d
/packet.c
89e1067e3bb219db6ac3bdb1292bc416d325ffed
[ "Apache-2.0" ]
permissive
gvsurenderreddy/vnc2rdp
a51a13cdcbf234b99c5574c90dc693a0b36afef1
79807c10fa456bf8f67f3fa05c27bada2373279e
refs/heads/master
2021-01-24T15:54:00.284911
2014-07-27T10:13:46
2014-07-27T10:13:46
null
0
0
null
null
null
null
UTF-8
C
false
false
1,431
c
/** * vnc2rdp: proxy for RDP client connect to VNC server * * Copyright 2014 Yiwei Li <leeyiw@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org...
[ "leeyiw@gmail.com" ]
leeyiw@gmail.com
8b81ae937fd8b0c010743e83789a425afe8ec719
46ffc2fc0dcca74d86d6a5c1cf1127816f55be41
/core/buses/slimbus/config/slimbus_adsp_8962.c
e1f1f314fafc39a76ae7900f42b47cc5b84379b9
[]
no_license
jcrutchvt10/gensec
262fef3d5cd1693042d0a464f8413a6a3e9d4189
c28347127030cabb6f2dc97cf33f308f7e0f968e
refs/heads/master
2021-07-06T23:28:30.026212
2016-10-15T08:34:47
2016-10-15T08:34:47
105,691,248
2
0
null
null
null
null
UTF-8
C
false
false
1,380
c
/* =========================================================================== FILE: slimbus_bsp_data.c DESCRIPTION: This file implements the SLIMbus board support data. =========================================================================== Edit History $Header: //compone...
[ "remittor@gmail.com" ]
remittor@gmail.com
6c3047c76564512ad0563ef1283316e7b5810c2a
f435486913aa9c997319146fa0b71479d4c09846
/h/resource.h
b3aebb5cb4a600fccaaa0362820210b36e94bfd3
[]
no_license
SnowyOwl-KHY/3DStudio
a60051e211c88e7e0034ed581437ffe64c8d586f
3323aa3db689a372d719fea3821628f9ce0fae7e
refs/heads/master
2020-04-09T05:13:50.200929
2015-08-31T18:53:06
2015-08-31T18:53:06
null
0
0
null
null
null
null
GB18030
C
false
false
7,730
h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ 生成的包含文件。 // 供 OpenGL.rc 使用 // #define IDR_MANIFEST 1 #define IDC_EDIT2 2 #define IDM_ABOUTBOX 0x0010 #define IDD_ABOUTBOX 100 #define IDS_ABOUTBOX 101 #define IDD_OPENGL_DIALOG...
[ "kehycs@foxmail.com" ]
kehycs@foxmail.com
cc52af5928dbf628a75fea9dbee44de9e5175cab
eb0c901f4a00c7980f8ac187315871e3cda782c3
/lib/nrf51sdk/Nordic/nrf51822/Board/nrf6310/ble/ble_app_gzll/ble_app_gzll_ui.h
c66dc73487a0e94f8cbfc9aba00c9eb07cc7b267
[]
no_license
finnurtorfa/nrf51
260cc0bd3c39a13c6948d45983036f2833e8c2c6
910361df704b814e61687630408300924e16ed20
refs/heads/master
2021-01-15T21:44:48.240793
2015-04-22T15:14:25
2015-04-22T15:53:17
10,125,502
34
34
null
null
null
null
UTF-8
C
false
false
1,519
h
/* Copyright (c) 2012 Nordic Semiconductor. All Rights Reserved. * * The information contained herein is property of Nordic Semiconductor ASA. * Terms and conditions of usage are described in detail in NORDIC * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT. * * Licensees are granted free, non-transferab...
[ "finnurtorfa@gmail.com" ]
finnurtorfa@gmail.com
4bcab9ca086ccad3a8e6558ba313c4b12467458f
ad216be6044023aaf87894d31783da2e94b1a7b3
/kernel/generic/src/adt/list.c
9128ceab0e4f3c9388d1107acf74ad918c284dea
[ "BSD-3-Clause" ]
permissive
narke/Einherjar.tmp
8c7011c0ee47a75c96eb6b539786cec6e22f15ef
8c2c6385e1280907fa081a767572c4ccd6c32a82
refs/heads/master
2020-12-28T19:57:06.746161
2015-06-30T12:50:36
2015-06-30T12:50:36
36,669,839
3
0
null
null
null
null
UTF-8
C
false
false
3,204
c
/* * Copyright (c) 2004 Jakub Jermar * All rights reserved. * * 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 condit...
[ "tcholoka@gmail.com" ]
tcholoka@gmail.com
a8c5a0e89afe6c1de8411bffdcb40c42ac4892b1
bba171431000209e48d52266cd8269607136c28f
/Strings/reverse_string1.c
0d86edcb5db68c11639c872e33f1e4a6ee443d83
[]
no_license
Hrituja/Data-Structures
2aa027a8c9203dc6a70ffbfce21a0e8794a66086
3ad9e5d8a9a734a23ab2a0df92fcc405e14b1828
refs/heads/master
2023-03-29T06:26:00.773182
2021-04-05T08:59:52
2021-04-05T08:59:52
289,225,546
0
0
null
null
null
null
UTF-8
C
false
false
280
c
#include<stdio.h> int main(){ char A[]= "welcome"; char temp; int i,j; for(j=0;A[j]!='\0';j++){ } j = j-1; for(i=0;i<j;i++,j--){ temp = A[i]; A[i] = A[j]; A[j] = temp; } printf("%s",A); }
[ "hrkhatavkar@gmail.com" ]
hrkhatavkar@gmail.com
ed16cd2d5e4c4d459f2c15e1210aea23a81f7b70
0982ed6490ace5a1cbc717a74052a504f08197fe
/Semester3/DataStructures/Unit2/CircularQueue.c
b2f97be48a1f8ca7ae773304311dd5606667f352
[]
no_license
RohitNagraj/EngineeringCourse
e3bb664a2eedc2abe2c3decc7909a61726773b22
596a104aa87bb0019641dbd32463484ee53a2da6
refs/heads/master
2020-03-28T12:37:17.698451
2019-12-23T13:49:17
2019-12-23T13:49:17
148,316,292
9
10
null
2019-09-15T12:10:21
2018-09-11T12:48:45
C
UTF-8
C
false
false
3,363
c
/* This circular queue program uses array as a queue. The basic idea of a queue is whichever element goes in the queue first comes out of the queue first, and this logic is also referred to as FIFO which stands for First In First Out. When the array is not full but the variable rear reaches the end, when a new element ...
[ "rohitnagraj.99@gmail.com" ]
rohitnagraj.99@gmail.com
a743d0e31993429e1252cca4f3fc6c9a64bcdf13
3020fcc65f02129557c9b9a365329d99447d49a5
/Lab3/rw-trie.c
1075f41cdcfa06e370f90f0cba9606fe7aab8cbf
[]
no_license
mdaum/OperatingSystems
6f3e872187b1746df40d0e482bcd1d622542737e
83fbfee9b955883552a77dd42f01b289a8b74fb3
refs/heads/master
2021-01-09T06:15:54.144825
2016-12-06T07:57:11
2016-12-06T07:57:11
80,946,574
0
0
null
null
null
null
UTF-8
C
false
false
16,299
c
/* A (reverse) trie with reader-writer locks. * Additions to boiler plate made by Maxwell Daum. Honor Code: I did not give or recieve any unauthorized help during this assignment. */ #include <pthread.h> #include <stddef.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include "trie.h" struct trie_node...
[ "mdaum@classroom.cs.unc.edu" ]
mdaum@classroom.cs.unc.edu
2d8aa3a758240086ba2ecbf6100a3c3afa90e64c
8c3defe869c6bca347d58ee4118c60280ea8c4d0
/src/old_chapter4/stackexp.c
7aea4488a7118534a8e20e26dfc8bec8afdbb5f8
[ "MIT" ]
permissive
helloShen/letsplayc
73870b095d921ff4ee86ae7ba56c88ad9e55f6ea
70f296a0312fd0afc39098abb1e3308413a3db1e
refs/heads/master
2021-07-24T06:06:47.878226
2021-01-26T06:43:01
2021-01-26T06:43:01
98,255,636
0
0
null
null
null
null
UTF-8
C
false
false
614
c
#include <stdio.h> #include <stdlib.h> #include "stack.h" /** 打印栈顶元素 */ void printtop(void) { if (sp > 0) { printf("Top Element: %g\n",val[sp-1]); } else { printf("Stack is empty!\n"); } } /** 复制栈顶元素 */ double seek(void) { if (sp > 0) { return val[sp-1]; } else { pr...
[ "symantec__@hotmail.com" ]
symantec__@hotmail.com
60b78f268c81dbeb3c4db86362ccf943d97a41ac
1f7ba83f932bea1162a42ab04b872d963bc3799f
/2 - ponteiros/teste.c
3586e50f1900b645a45bc93007b3e516e7556ae7
[]
no_license
gizelecardoso/Estrutura-de-Dados---Machion
d7f0688beca40252a254117d8d0fe892fe51eb6b
f04cbdd3ff2ca9ef97df705b43a386218c085765
refs/heads/develop
2020-07-29T17:07:30.495159
2019-11-23T18:40:21
2019-11-23T18:40:21
209,893,536
0
0
null
2019-09-25T23:27:40
2019-09-20T22:52:35
C
UTF-8
C
false
false
543
c
#include<stdio.h> #include<stdlib.h> int main(){ int d = 4; int *p; p = &d; int *c =(int *) 10; printf("%d\n", d); printf("%d\n", &d); printf("%d\n", *p); printf("%d\n", p); void *pp; int *p1, p2 = 10; p1 = &p2; pp = &p2; printf("Endereco em pp: %p \n", pp); ...
[ "gizele.santos@ibm.com" ]
gizele.santos@ibm.com
24a720c0b024c58756b0f38dcf62ec879e719b31
ba14e96ece694e9672f11bfdf6a66f2253b07bf9
/libcfx/Generated/cfx_render_handler.c
ac2ba1ad62884010124385d2efc30200d717f455
[ "BSD-3-Clause" ]
permissive
nbuhell/chromiumfx
1a93f3182b85f1f457ebbcd639247eb836804c5f
99aad33b91c23e431b5472919a6f4e5a7c31b34b
refs/heads/master
2022-11-10T16:58:09.406194
2019-10-22T14:44:09
2019-10-22T14:44:09
null
0
0
null
null
null
null
UTF-8
C
false
false
18,344
c
// Copyright (c) 2014-2017 Wolfgang Borgsmüller // All rights reserved. // // This software may be modified and distributed under the terms // of the BSD license. See the License.txt file for details. // Generated file. Do not edit. // cef_render_handler typedef struct _cfx_render_handler_t { cef_r...
[ "wborgsm@localhost" ]
wborgsm@localhost
f1dbfdd0b4f646927b5718502a3c7edae38a1374
096d674366c1114f98d21b76fbc49664f6dd20c6
/source/dfrobot_test/device/include/camera.h
2c719378f8b8e3c70a5ff7273f4b460b8e4922ce
[]
no_license
github188/SmartCamera
09ff86109420cb0126dd99ed0ed4d59e13a32a82
a5bece938ff0dc019ead3d62fa6adefbc8c497fe
refs/heads/master
2020-04-28T10:24:22.890431
2018-04-28T10:08:52
2018-04-28T10:08:52
175,199,992
0
1
null
2019-03-12T11:48:52
2019-03-12T11:48:52
null
UTF-8
C
false
false
2,335
h
#ifndef CAMERA_H #define CAMERA_H #ifdef __cplusplus extern "C" { #endif typedef void* (*FUNC_DMA_MALLOC)(unsigned long size); typedef void (*FUNC_DMA_FREE)(void *point); typedef struct { FUNC_DMA_MALLOC dma_malloc; FUNC_DMA_FREE dma_free; unsigned long width; unsigned long height; } T_CAMERA_INPUT; /** * @b...
[ "1124427436@qq.com" ]
1124427436@qq.com
a30fc5fb4d4c018effc426dff42eddf5f9975bf5
0032c1d1910f331752bdc3b37b09bd403a56c32f
/src/nsqd/tcpServer.c
e9f7b2a2775dd5458f2dae7fb66d45f360790b65
[ "Apache-2.0" ]
permissive
feifeiiiiiiiiiii/cnsq
c3bdf70827b3ac94af889ec22165f4a0729a1e57
acc9f6fd029835f31955220678e71cacadc86023
refs/heads/master
2021-01-24T21:18:50.531413
2018-05-11T07:52:10
2018-05-11T07:52:10
123,268,567
0
0
null
null
null
null
UTF-8
C
false
false
11,930
c
#include "tcpServer.h" #include "common.h" static char neterr[256]; static void acceptTcpHandler(aeEventLoop *el, int fd, void *privdata, int mask); static void acceptCommonHandler(tcpServer *server, int fd, int flags, char *ip); static client *createClient(aeEventLoop *el, int fd); static void freeClient(client *c)...
[ "qinpengfei@jd.com" ]
qinpengfei@jd.com
7c95d7bff42fbf90543ad3691817e5a9dc2f955b
a5552d774cb832be5297a9d9782d11d6a066ffc0
/tests/sockem_ctrl.c
1fb1517b8af501450f3d9fb05a36ecb59f5731a6
[ "BSD-3-Clause", "BSD-2-Clause", "MIT", "Zlib", "ISC", "Apache-2.0", "LicenseRef-scancode-public-domain" ]
permissive
xxfelixxx/librdkafka
5244d1959a27ba4aa35d1e41c474006a63ee35bb
984dd4d3c360908f98da020626c99254a0112430
refs/heads/master
2020-04-25T09:09:34.193210
2019-02-26T08:24:41
2019-02-26T08:24:41
172,668,032
0
0
null
2019-02-26T08:19:41
2019-02-26T08:19:41
null
UTF-8
C
false
false
4,996
c
/* * librdkafka - Apache Kafka C library * * Copyright (c) 2018, Magnus Edenhill * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the abov...
[ "magnus@edenhill.se" ]
magnus@edenhill.se
8e48216e9ffa865a9553cf076aaab369ce2c51f6
3aeba40de66e63fb052258eb0c92107b680d7e86
/source/credentials.c
061ae86aca17075e81210c7d994278f4687bbfc2
[ "Apache-2.0" ]
permissive
kmbotts/aws-c-auth
7fdbc3d1c4d4c5f4504e43d33a2f260778dd7284
517627e0e47f85d62988bdd093bbc79150ac6086
refs/heads/main
2023-07-23T22:00:24.892939
2021-08-31T21:05:57
2021-08-31T21:05:57
null
0
0
null
null
null
null
UTF-8
C
false
false
9,835
c
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/auth/credentials.h> #include <aws/cal/ecc.h> #include <aws/common/environment.h> #include <aws/common/string.h> /* * A structure that wraps the public/private data needed to sign an au...
[ "noreply@github.com" ]
kmbotts.noreply@github.com
b25f1c66abe2c27354445f7911c5e85499ab3f28
d860a75148bf588da1b0ae796b76967b776f402d
/PL4/redir.c
6ff86cd5dac7dd1656f3c7455113c8c44be73223
[ "MIT" ]
permissive
jpdiasfernandes/SO
9275ec9c39d8932972827d0bb264ef7c8c38b5d8
06ffbc78e0f4e952453a34809aab9ae3bd67fbce
refs/heads/master
2023-08-17T23:49:01.094049
2021-09-25T10:58:15
2021-09-25T10:58:15
348,321,602
0
0
null
null
null
null
UTF-8
C
false
false
864
c
#include <stdio.h> #include <unistd.h> #include <string.h> #include <fcntl.h> #include <sys/wait.h> int main (int argc, char *argv[]) { if (argc < 2) { perror("redir [-i fich_entrada] [-o fich_saida] comando arg1 arg2"); _exit(-1); } char *args[argc]; int j = 0; for (int i = 1; i < argc; i++) { if (strcmp...
[ "jpdiasfernandes13@gmail.com" ]
jpdiasfernandes13@gmail.com
3d8c5d05025642e6d2122e0cd9332247d34b0f1a
f50fc0c377b1a38491c340f45aeabeee07d14ecc
/Project/CircleLED/USB/CONFIG/hw_config.c
85b4b475ec316d990b065470fa4ad2477960eb90
[]
no_license
Leopold201709/Project20180814
50380e90a82594c9d6fee389159a3a1060d91003
de7f33925c4e8b25d86ae9ca3cd2523604607822
refs/heads/master
2020-04-13T11:26:44.105607
2018-12-26T11:54:28
2018-12-26T11:54:28
163,174,833
0
0
null
null
null
null
GB18030
C
false
false
7,163
c
#include "usb_lib.h" #include "usb_prop.h" #include "usb_desc.h" #include "usb_istr.h" #include "hw_config.h" #include "usb_pwr.h" #include "usart.h" #include "string.h" #include "stdarg.h" #include "stdio.h" ////////////////////////////////////////////////////////////////////////////////// //本程序只供学习使用,未经作者许可...
[ "31846197+Leopold201709@users.noreply.github.com" ]
31846197+Leopold201709@users.noreply.github.com
9f4032577138c984b3fd251297be677884da3c8e
e47888a89a89c3ba5010efac9f52ceb44cc35b48
/opengl/include/shoveler/component/render_state.h
907a95ad2a57b72c1d76c5e2d3fedbc2104102c7
[ "MIT" ]
permissive
workflowmate/shoveler
9c3c36784004026d47c22bf033db067740517282
3846427cd43ff3bdec291fc3dffd306d02fff1d0
refs/heads/master
2022-10-12T15:11:43.861882
2020-06-12T10:43:38
2020-06-12T10:43:38
null
0
0
null
null
null
null
UTF-8
C
false
false
657
h
#ifndef SHOVELER_COMPONENT_RENDER_STATE_H #define SHOVELER_COMPONENT_RENDER_STATE_H #include <stdbool.h> // bool #include <stddef.h> // NULL typedef struct ShovelerComponentStruct ShovelerComponent; // forward declaration: component.h typedef struct ShovelerRenderStateStruct ShovelerRenderState; // forward declaratio...
[ "fabian@hahn.graphics" ]
fabian@hahn.graphics
9a0c43a5c0f0d278f7f619ef08fea74a8ad70fdb
3a625729b69f40161693ac0bad606f30138d258e
/kernel/src/multitasking/thread.c
aff1f8af5af291386637bb0cb02feb64096ba016
[]
no_license
zrho/Carbon
afa432fec3744a86eb5002db63449cea19329d1b
513831050a083e36c52011af23764ce21495d040
refs/heads/master
2020-05-16T07:24:40.766566
2011-11-13T14:52:36
2011-11-13T14:52:36
2,720,537
7
0
null
null
null
null
UTF-8
C
false
false
9,546
c
/** * Carbon Operating System * Copyright (C) 2011 Lukas Heidemann * * This program 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 License, or * (at your option) any later vers...
[ "lukasheidemann@aim.com" ]
lukasheidemann@aim.com
58a0a5a5f6197297a80745d4351b5737be725de3
ab9ab1183103e682c5c9ff5d6c13d0e446834cf4
/src/init.c
aae969ad824e181f1e9c2e961eaadcfa04ed93a2
[ "MIT" ]
permissive
Akayeshmantha/tdigest
d590d4f61b3d8e12e7d0341bbdd442f89f49547e
1138ecdef40e97691e9a3959ebe78d8e98c8ed88
refs/heads/master
2020-05-04T15:08:00.854785
2019-04-02T22:14:09
2019-04-02T22:14:09
null
0
0
null
null
null
null
UTF-8
C
false
false
1,222
c
#include <R.h> #include <Rinternals.h> #include <stdlib.h> // for NULL #include <R_ext/Rdynload.h> /* FIXME: Check these declarations against the C/Fortran source code. */ /* .Call calls */ extern SEXP is_null_xptr_(SEXP); extern SEXP Rtd_add(SEXP, SEXP, SEXP); extern SEXP Rtd_create(SEXP); extern SEXP Rtd_merge(...
[ "bob@rud.is" ]
bob@rud.is
ff14a12effd5b188d97efaa6022bf0c09b7c1785
6280f6e96852435194555f3036b8118001a434ff
/xfat/fat_ex_c250/src/xfat.c
641001c7fa73cb4fa6f5649a7f56fb14e9b31650
[]
no_license
duanlangtaosha/Learning-DIY-FAT32
3f0af15b2a47afc26ddb788f6802907314b23f24
27b9e67a0c1c6a57105013e592328939c3400e67
refs/heads/master
2020-08-02T17:08:21.564375
2019-07-31T12:40:10
2019-07-31T12:40:10
211,440,196
0
1
null
2019-09-28T03:47:37
2019-09-28T03:47:36
null
UTF-8
C
false
false
74,729
c
/** * 本源码配套的课程为 - 从0到1动手写FAT32文件系统。每个例程对应一个课时,尽可能注释。 * 作者:李述铜 * 课程网址:http://01ketang.cc * 版权声明:本源码非开源,二次开发,或其它商用前请联系作者。 */ #include <stdlib.h> #include <string.h> #include <ctype.h> #include "xfat.h" #include "xdisk.h" extern u8_t temp_buffer[512]; // todo: 缓存优化 // 内置的.和..文件名 "12345678ext" #defi...
[ "527676163@qq.com" ]
527676163@qq.com
8178be54a1cae502fdd3d19b54fe4d887e65cf0b
eadffcd9ae2e35dcdbf6b193e4596db33945c796
/sanjay4\5\3\18.c
af49f6b5e2b493af0bda2f58e5603be76177e95e
[]
no_license
sanjay71/sanju07.c
9282c6758a32b436419ab9f57b34d8eceb719d97
f508ea0969eb92b23aae5eeb73ae59f9f323fe44
refs/heads/master
2021-09-10T15:17:13.723974
2018-03-28T10:56:11
2018-03-28T10:56:11
120,288,811
1
0
null
null
null
null
UTF-8
C
false
false
137
c
#include<stdio.h> int main() { int i=5; char s[10]={'g','u','v','i'}; for(i=0;i<=5;i++) { printf("%s \n",s); } getch(); }
[ "noreply@github.com" ]
sanjay71.noreply@github.com
226472f4d97feafb152c7abca043837c351b2b0a
1f5cd870a892ea7fcff753c4723155468dd3125c
/Device/MM32F013x/HAL_Lib/Inc/hal_gpio.h
85797935ef68bedf162a5df92ae070c241759660
[]
no_license
SoCXin/MM32F013
1e6416401eb6ee7db2009ac05cc0bbe4c6ff449b
eb746129a76e084eadad6c3d4d1a3a5a48dabbc9
refs/heads/master
2023-03-29T10:45:50.320751
2021-03-24T06:05:16
2021-03-24T06:05:16
184,999,974
0
0
null
null
null
null
UTF-8
C
false
false
8,378
h
//////////////////////////////////////////////////////////////////////////////// /// @file hal_gpio.h /// @author AE TEAM /// @brief THIS FILE CONTAINS ALL THE FUNCTIONS PROTOTYPES FOR THE GPIO /// FIRMWARE LIBRARY. //////////////////////////////////////////////////////////////////////////////// /// ...
[ "qitas@qitas.cn" ]
qitas@qitas.cn
075735377fe16b2fe325ce738a9ec81e70105fe0
357c68d24389b7708d0d11f920340c9b283c824e
/ida_build/lib/isidb/chan.c
570c36bbf82494f9d5f3ef9804f41224332899b9
[]
no_license
joeledwards/asl-station-processor
80361a786ee277999b30d87ac1497c0bdc47d119
d73f5167baf01e2d7455b180f8757b0988c78d45
refs/heads/master
2020-05-31T10:06:58.948122
2012-10-29T16:38:27
2012-10-29T16:38:27
6,052,634
1
1
null
null
null
null
UTF-8
C
false
false
2,157
c
#pragma ident "$Id: chan.c,v 1.4 2007/01/11 21:59:25 dechavez Exp $" /*====================================================================== * * Generate a list of all channels for a particular station, based on * the calibration table. * *====================================================================*/ #in...
[ "maint@SLATE1.(none)" ]
maint@SLATE1.(none)
39c033e7496b75afc45b94a46bddfa09c34cfeab
b9b5e8aaf13398b95d8508d07d0b755d6f47767c
/omx/video/src/openmax_il/video_decode_ittiam/src/OMX_VideoDec_Thread.c
2cd072a4fc64f97ef1dcf0045eb8191c86c74993
[]
no_license
Evervolv/android_hardware_ti_omap3
49a73dfdab74be449f1fe2e0f9f32049b7359bb1
c53853c77c9541c177bb3f8903319ff2342abc27
HEAD
2016-09-10T22:30:36.326937
2015-11-12T04:50:06
2015-11-12T04:50:06
1,210,168
0
2
null
null
null
null
UTF-8
C
false
false
28,396
c
/*****************************************************************************/ /* */ /* Ittiam Video Decoder OMX-IL Component */ /* ITTIAM SYSTEMS PVT LTD, BANGALORE */ /* ...
[ "eviscerationls@gmail.com" ]
eviscerationls@gmail.com
29494417e2b56375bfb3021c800884eaf5254082
bf9718905c26cc2fb6c82447d67134365632fbb0
/timetable.c
afafaa5a26bb543c0be7b826b343452710afd69b
[]
no_license
p-sai-varun/time-table-c-lang
78d5a1aa62c1d5f9d2513454b840b286cea1ddee
dac27ab6b5d50acc303976a0ae5f64244c8246c8
refs/heads/master
2020-07-23T11:49:34.195297
2019-09-10T12:21:24
2019-09-10T12:21:24
207,548,531
0
0
null
null
null
null
UTF-8
C
false
false
6,928
c
#include<string.h> #include<stdbool.h> #include<stdio.h> #include<stdlib.h> #include<conio.h> void print(); struct course { char name[20]; char subject[20][15]; int creadit[20]; int room; int totsub; int ctchr[20]; int allsub; int breaks; }; struct course co[20]; /***********************************...
[ "noreply@github.com" ]
p-sai-varun.noreply@github.com
b9a05e857210171ae258d6c8840938f5d31033b5
ae5ccdbb928f8a2926a35edb86af6aa90f61e190
/include/tool.h
884c3fb82d2ea7c676eadf86e516d9a5cf3d4436
[]
no_license
magicfinger96/myshell
6ed309559e67603bad9bcce5e6ab3e614b38c301
2c639994534b3ad4a5f9324803d8d362d003e9df
refs/heads/master
2020-07-06T02:02:07.500942
2019-08-17T08:18:28
2019-08-17T08:18:28
202,854,032
0
0
null
null
null
null
UTF-8
C
false
false
444
h
#ifndef __TOOL__ #define __TOOL__ #define BASE_STRING_SIZE_READING 30 #define LENGTH_BLOCK_READING 30 void emptyBuffer(); int readEntire(char** entireString); char* readRestrictedSize(int size); void removeOccurences(char* string, char toRemove); int existCharAfter(char* string, char target); void skipSpace(char** st...
[ "andrea.frnc@live.fr" ]
andrea.frnc@live.fr
efabbaf9c83126268e08d7d7e928cc894c784d9b
eb25494411294ce5e8258bd710a09a16ff9cb61b
/modules/spi/spi_slave.h
03af86e7c39bc2e13f7958f27ff2d87b780c668b
[]
no_license
EtheRGB/EtherDuino
af5466e44d5bcfbcec672bc54e1e3ccc6bc7897e
a7d18f2847db4bb67f547ae8a96a548044799b07
refs/heads/master
2021-01-23T06:20:49.495634
2017-07-24T04:23:56
2017-07-24T04:23:56
86,358,498
0
1
null
2017-07-24T04:23:57
2017-03-27T16:27:34
C
UTF-8
C
false
false
223
h
/*! @brief SPI Slave-mode definitions * * @author inselc * @date 04.12.16 initial version */ #ifndef SPI_SLAVE_H_ #define SPI_SLAVE_H_ #include "spi_common.h" // not yet implemented #endif /* SPI_SLAVE_H_ */
[ "noreply@github.com" ]
EtheRGB.noreply@github.com
eb55e5b37baf5f27128c50ed550a4c17f848560c
fa514690e8d2efb177c02fe56df3e741deb87a2c
/Project/STspin/spin32f0/MCSDK_v5.3.3-Full/MotorControl/MCSDK/MCLib/Any/Src/motor_power_measurement.c
783ef9953e2b729c1f738bfb761964a3635eb44d
[]
no_license
AaronBing/Myproject
1e3f2b46f1508a830c8a35cda9ad1947857f9ea8
70082c982040180580a8405415c5ba7398054d9b
refs/heads/master
2020-04-17T00:44:12.252583
2019-07-11T12:10:31
2019-07-11T12:10:31
166,060,908
6
1
null
null
null
null
UTF-8
C
false
false
3,967
c
/** ****************************************************************************** * @file motor_power_measurement.c * @author Motor Control SDK Team, ST Microelectronics * @brief This file provides firmware functions that implement the features * of the Motor Power Measurement component of the...
[ "15626187207@163.com" ]
15626187207@163.com
4078760dd9255e58fa7b42672d9ffd5e4700aeed
001a06efd360d3b319ad8a21dfbef896a763a2e4
/threads/strerror_tsd.c
08eb967c40045667ce36d9eda9bb3bf7f7e0f06a
[]
no_license
zyfjeff/system-interface
54c5b8488d46deed6a96e16744ff275db9a65b10
a7e497085a356b6d70196a65866c9af006abf941
refs/heads/master
2021-01-21T12:53:41.547987
2016-05-09T01:30:55
2016-05-09T01:30:55
51,918,879
1
0
null
null
null
null
UTF-8
C
false
false
1,333
c
#define _GNU_SOURCE #include <stdio.h> #include <string.h> #include <pthread.h> #include <stdlib.h> #include <errno.h> static pthread_once_t once = PTHREAD_ONCE_INIT; static pthread_key_t strerrorKey; #define MAX_ERROR_LEN 256 static void destructor(void *buf) { free(buf); } static void createKey(void) { i...
[ "445188383@qq.com" ]
445188383@qq.com
794a283c299af9afb65e64201e3227b4065e56bf
1da9b80b2c87ce35ca602207e7feb5767324a500
/worker/deps/usrsctp/usrsctp/usrsctplib/netinet/sctp_uio.h
1e38e51a95278cfdad2a37040e7fb3c080869e92
[ "BSD-3-Clause", "ISC" ]
permissive
liwf616/mediasoup
e3acd9557c5e26285f6a03dcfba0bdc4fd493676
99d1c696bd4b985ea8bf5348b7f520998e165c32
refs/heads/v3
2020-08-11T23:16:36.099675
2019-10-18T12:40:56
2019-10-18T12:40:56
214,645,189
0
0
ISC
2019-10-18T12:40:58
2019-10-12T12:39:36
null
UTF-8
C
false
false
44,397
h
/*- * SPDX-License-Identifier: BSD-3-Clause * * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved. * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. * * Redistribution and use in source and binary forms, with o...
[ "noreply@github.com" ]
liwf616.noreply@github.com
4cf242300b642a60d9f91888d2113b4fe87c55d5
3bed26850e1ad704e2e3a82c625cb653c74ca0d0
/p58/p58/test.c
54e10de715656ae557fa8b34bc7355353cfd96bc
[]
no_license
3255483520/C_code
7eeda4ad81b387f45825d0e4c79d8014bb3ab2e2
ae5e7700973d96f05e60a17772e1666d6da95f9f
refs/heads/master
2023-07-03T21:43:38.760195
2021-08-05T03:33:59
2021-08-05T03:33:59
371,049,272
1
0
null
null
null
null
GB18030
C
false
false
1,405
c
#define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> //结构体的自引用 //struct Node //{ // int data; // struct Node* next; //}; // //int main() //{ // // return 0; //} //typedef struct Node //{ // int data; // struct Node* next; //}Node; // //int main() //{ // struct Node n1; // Node n2; // // return 0; //} //结构体初始化 //s...
[ "3255483520@qq.com" ]
3255483520@qq.com
fd4c82a4ac667e9182d03342b2fcda6593c88b00
dc08be990d1e4864971776d9007c612bad025a8e
/client.c
8771624705d5532949ac3ea14e1a686a302d4129
[]
no_license
zhangjinde/kermit
1ed42c28100e8ca5a903d1092bc4cec0e134753e
4d1679f9e34afa1bac928ece731f18fb5c491021
refs/heads/master
2021-01-23T23:45:07.478290
2015-08-12T01:56:56
2015-08-12T01:56:56
null
0
0
null
null
null
null
UTF-8
C
false
false
9,297
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <local.h> #include <protocol.h> /* Comando ls do lado do cliente */ void kermit_client_ls(int socket, const char *params, unsigned int params_length) { struct kermit_packet answer; unsigned char type, length; /* Envia um pacote para o servidor ...
[ "rafaelraveduttilm@hotmail.com" ]
rafaelraveduttilm@hotmail.com
5c3dbe06e815fb76d168d7cd7b9c311b374786b7
67dd0833108e981767ad362081709512ce4c34eb
/Pipe I:O and checksum/myunchecksum.c
965d514339182d4741e0fb1e59723bb6212b93a3
[]
no_license
nbanga/DataCommunication-Networks
f7c230a7f701e9e2b426407651b4b27697c3aa95
91b50f51667d881d3585c542fed1f2b6ed2f5db6
refs/heads/master
2020-06-16T11:45:10.857676
2016-12-17T19:13:02
2016-12-17T19:13:02
75,107,711
0
0
null
null
null
null
UTF-8
C
false
false
3,861
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> #include <inttypes.h> #include <fcntl.h> #include <errno.h> int main(int argc, char* argv[]){ uint64_t checksum = 0U, stored_checksum = 0U, checksum_le = 0U; int fd_source, fd_dest; char buffer='\0'; int bytes_read; cha...
[ "Nomchin@Nomchins-MacBook-Pro.local" ]
Nomchin@Nomchins-MacBook-Pro.local
38f6459da2d6825ab929c3e560b25f49a16310ad
395d1860e82bc75ccc04b91c4b9a8fa46276d9bb
/Source/Ai/Pathfinding/Multithreaded/Jobs/Pathfinding/hkaiNavMeshLineOfSightJob.h
d5a74848707ad842f51f50e894c4aa61439e9731
[]
no_license
Hakhyun-Kim/projectanarchy
28ba7370050000a12e4305faa11d5deb77c330a1
ccea719afcb03967a68a169730b59e8a8a6c45f8
refs/heads/master
2021-06-03T04:41:22.814866
2013-11-07T07:21:03
2013-11-07T07:21:03
null
0
0
null
null
null
null
UTF-8
C
false
false
1,565
h
/* * * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok. * Product and Trade Secret source code contains trade secrets ...
[ "joel.van.eenwyk@havok.com" ]
joel.van.eenwyk@havok.com
2ab7f66b7d90624fac549ecaedefc8a4ce1ac144
6cfb3402e84608c1624095f4a375b913b647d72c
/examples/ctfgame/client/ctf.h
853d137e397d2f815c89bbbc3318b10232a4d7bb
[ "LicenseRef-scancode-other-permissive" ]
permissive
cybern0id/spectranet
4741c8a8423bc8865b843ea3d5a1b6db81fc6f31
ca5b78130ad9f1797ebee5ae2b4c28725f32da91
refs/heads/master
2021-01-09T03:09:03.962900
2014-11-03T13:28:53
2014-11-03T13:28:53
null
0
0
null
null
null
null
UTF-8
C
false
false
3,378
h
#ifndef CTF_H #define CTF_H // The MIT License // // Copyright (c) 2011 Dylan Smith // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation t...
[ "dyls@alioth.net" ]
dyls@alioth.net
1329d7a0f7ce3772993b4260e0db632a1a9f6f45
d9852907dc6f6c11023d344e7e09225a62921781
/libxml2-2.9.1/include/libxml/xmlversion.h
4b7f0fecbcd21e282800828f2f25fdf53912940c
[ "MIT" ]
permissive
AlexanderDenkMA/TypeChef-libXMLAnalysis
9ba14e382f9676cfbe4a43f68553947bec7227f3
10579cb6975291f82f8e6d7556bd66d33d66b215
refs/heads/master
2016-09-06T06:30:40.844620
2014-07-03T13:40:58
2014-07-03T13:40:58
null
0
0
null
null
null
null
UTF-8
C
false
false
8,147
h
/* * Summary: compile-time version informations * Description: compile-time version informations for the XML library * * Copy: See Copyright for the status of this software. * * Author: Daniel Veillard */ #ifndef __XML_VERSION_H__ #define __XML_VERSION_H__ #include <libxml/xmlexports.h> #ifdef __cplusplus ext...
[ "info@alexander-denk.net" ]
info@alexander-denk.net
6fe36ffdfaebdf28e19a350b16c884bc5aed3bd6
23eaac416dbc7a0a91a47e81a77153321617325e
/templates/new/nchashmap.c
819f69314053e77ac06aff26980e318a8b86661a
[]
no_license
DennisHeimbigner/utils
a2ebf64c6a46b21f1139fd15081672f7bffe0838
aad7b118abee50d88e9ed591acb6d5aae0730648
refs/heads/master
2021-01-01T20:48:26.360864
2017-09-22T17:11:09
2017-09-22T17:11:09
11,107,559
0
0
null
null
null
null
UTF-8
C
false
false
48,588
c
/********************************************************************* * Copyright 2010, UCAR/Unidata * See netcdf/COPYRIGHT file for copying and redistribution conditions. * $Header$ *********************************************************************/ #ifdef HAVE_CONFIG_H #include "config.h" #endif #incl...
[ "dmh@ucar.edu" ]
dmh@ucar.edu
bc94b158ad3fdc185d08522931e205e93be85506
b7f8cc25e7b736896ef0432a5e352264db0418ed
/modules/algorithm/include/algorithm/hypercv_algorithm.h
46f92dd40144c4c74535fd890f09f6a5999d49b7
[ "BSD-3-Clause" ]
permissive
gisnewbird/HYPERCV_PUBLIC
95a89b70ad23ba15d67e19d4a2e2d96ef05a9403
aef4f392ed0136284409c3e2d750a7812e4a5e35
refs/heads/master
2023-03-20T05:34:36.739946
2020-08-04T11:15:48
2020-08-04T11:15:48
null
0
0
null
null
null
null
UTF-8
C
false
false
379
h
/************************************************************************* > File Name: Algorithm.h > Author: ljm > Mail: jimin@iscas.ac.cn ************************************************************************/ #pragma once #include "pca.h" #include "normalize.h" #include "HisEqualization.h" #include "cem.h" #in...
[ "260960918@qq.com" ]
260960918@qq.com
574fe8775b8999dfd30ea8be7ae99e83fdb5d637
1c3cfe19f160faa4c7f2dedc52da1f4a301c17b2
/filesnarf.c
3043c62a62188cbf37adde2567c5b6b72791272a
[ "LicenseRef-scancode-warranty-disclaimer", "BSD-2-Clause" ]
permissive
legacy-codedigger/DSniff
59a3b03d9e28b7909158d8747a8d1b32084d86c6
aeed90fe2415fe067f52326ea91d86cfa4cf812f
refs/heads/master
2022-11-03T08:07:07.578373
2020-06-15T00:50:28
2020-06-15T00:50:28
272,309,545
0
0
null
null
null
null
UTF-8
C
false
false
10,880
c
/* * filesnarf.c * * Sniff files from NFS traffic. * * Copyright (c) 2000 Dug Song <dugsong@monkey.org> * * $Id: filesnarf.c,v 1.13 2001/03/15 08:33:03 dugsong Exp $ */ #include "config.h" #include <sys/types.h> #include <rpc/rpc.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <fcntl.h...
[ "zahir.meddour@protonmail.com" ]
zahir.meddour@protonmail.com
d20951ff59bb027e68b302aa734cff8cbf5279f5
59235799a71fc0cb194b628e89c94caf089122fb
/for loop back triangel.c
36de9cce366f5943d303cabd098d4f1c63bff784
[]
no_license
mosiurp/c-program-problem-solve
b9344442ccf8a7b88b89817e0a9fa340649ab1d1
d1a0de894fd26a7133749a932099d7a47b768ec0
refs/heads/master
2020-07-10T06:17:13.180259
2019-08-29T14:44:31
2019-08-29T14:44:31
204,190,272
2
0
null
null
null
null
UTF-8
C
false
false
282
c
#include<stdio.h> int main() { int i,j,n; printf("enter the number of pettern \n"); scanf("%d",&n); for(i=n; i>=1; i--) { for(j=1; j<=i; j++) { printf("%d",j); } printf("\n"); } return 0; }
[ "mosiur.ma@gmail.com" ]
mosiur.ma@gmail.com
e8dea48066a384029d56c4b11ee14b3b28090dbe
98e1ea7697470afb33950e5be347f3a495d73e0c
/hash_t1.c
10155a9f6c8f1048b05a4046e679607daf66e124
[]
no_license
wuqiang29/c_train
612ad97ef5fe8d55deff9b3a41b7e843e0637974
11d77c1a13f287e3fa7e6a9a6d3306bb243f5098
refs/heads/master
2020-03-19T20:31:37.988543
2018-06-29T08:35:54
2018-06-29T08:35:54
136,905,876
0
0
null
null
null
null
UTF-8
C
false
false
2,506
c
/* *哈希查找是通过计算数据元素的存储地址进行查找的一种方法 *理想情况是能够直接找到需要的记录,因此必须在记录的存储位置和其关键字之间建立一个确定的对应关系f,使每个关机中和结构中唯一的存储位置相对应 *因此在查找是只需根据这个对应的关系f找到给定值K的对应项f(K)。如结构体存在关键字和K相等的记录,则必定在f(K)的存储位置上,由此不需要进行比较便可直接 *取得所查记录。在此,称这个对应关系f为哈希函数,按这个思想建立的表为哈希表。 *哈希表不可避免冲突现象:对不同的关键字可能得到同一哈希地址,即K1不等于K2,而f(K1)=f(K2)。具有相同函数值的关键字对该哈希函数来说称为同义词。因此,在构造 *哈希表时不仅要设定一个...
[ "wuqqiang@163.com" ]
wuqqiang@163.com
0af885a78b3aa88c348edcb05026bde078079d53
d14e52697066c4d8bf1093cc0762d01006478c15
/ECH/gui/resource/font/lv_poc_font_msyh_1bit_2500_25.c
33dc44baff700fc5fee32be6964b74ae5a9caaae
[]
no_license
wanglusong/STM32_F1_HAL_LIB
007753ca67d485bca63908ded4f312fd200b7aa2
d5875dcec5090a255a1e1441fc556cb5b78faa9f
refs/heads/master
2023-04-04T15:19:09.084331
2021-04-03T13:36:05
2021-04-03T13:36:05
278,862,408
0
0
null
null
null
null
UTF-8
C
false
false
1,405,956
c
#include "lvgl.h" /******************************************************************************* * Size: 25 px * Bpp: 1 * Opts: ******************************************************************************/ #ifndef LV_POC_FONT_MSYH_1BIT_2500_25 #define LV_POC_FONT_MSYH_1BIT_2500_25 1 #endif #if L...
[ "1176475725@qq.com" ]
1176475725@qq.com
072f4900f4290dbdbd091320bc12768bc78fa47f
316d7bd2b7506c385db800dcbd702af8699bcf49
/Bootloader_module_01/RTE/RTE_Components.h
995423ad05eae2df7ca2133a4e1594a39da7d376
[]
no_license
Vinhuit/Freescale
92146a7658a789f4b41b4144c32ebb931a7d2a9a
fbc12747520b09316dc9fe3185228bbec4f6f9d7
refs/heads/master
2021-01-23T06:58:54.078108
2015-09-17T04:29:41
2015-09-17T04:29:41
42,633,866
2
0
null
null
null
null
UTF-8
C
false
false
256
h
/* * Auto generated Run-Time-Environment Component Configuration File * *** Do not modify ! *** * * Project: 'Bootloader_module_01' * Target: 'Bootloader' */ #ifndef RTE_COMPONENTS_H #define RTE_COMPONENTS_H #endif /* RTE_COMPONENTS_H */
[ "caubequay00@gmail.com" ]
caubequay00@gmail.com
8e2a8bf3afd7f48d0e5c029d86b18bbfd982dac9
2fe4e069831dc13785d6d85d48ff5b3e7917e49a
/baseport/WM-100-Duino/Arduino/core/wiring_private.h
167b74b97bda98bc8e0b32f58b46d9d39d94fd4a
[]
no_license
nandojve/embedded
2c349bf2dbffa1ef5e0fa80c60b7d9a7c589e554
da9fb2810a06980821bd4736ae622a80de6025d3
refs/heads/master
2021-01-21T12:27:09.764365
2015-01-05T23:09:53
2015-01-05T23:09:53
18,577,491
4
0
null
null
null
null
UTF-8
C
false
false
1,688
h
/* wiring_private.h - Internal header file. Part of Arduino - http://www.arduino.cc/ Copyright (c) 2005-2006 David A. Mellis This library 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...
[ "nandojve@gmail.com" ]
nandojve@gmail.com
7ac915dc0258c4dafe1c449b71e7d43a21fea970
2c4cf3e896717421b2996f530bfa96740829e229
/os345semaphores.c
2d6c1e56365b7881d94fb3f41514457bb257e0bc
[]
no_license
kupiakos/CS345
bef92789d5a90749989e629f192f1e04a3e7be9d
89e46a0baddf345bbc3a08f8f7232eb26cf51fa0
refs/heads/master
2020-06-14T08:13:49.659488
2016-12-07T07:14:49
2016-12-07T07:14:49
75,211,309
0
0
null
null
null
null
UTF-8
C
false
false
8,656
c
// os345semaphores.c - OS Semaphores // *********************************************************************** // ** DISCLAMER ** DISCLAMER ** DISCLAMER ** DISCLAMER ** DISCLAMER ** // ** ** // ** The code given here is the basis for the BYU CS345 p...
[ "kupiakos@gmail.com" ]
kupiakos@gmail.com
a5cb5ad4f3a528c0341352028bda2f94f49567e6
fea7abac6aacf2bb433e915e561e97325c421df0
/mN1_10/mGammaD_8p5/cT_20/DarkSusy_mH_125_mGammaD_8p5_cT_20_LHE_nD_p.C
bca4650ef30fc06d4cb479fbcd2d363aacc252ba
[]
no_license
Munazza12Sayed/DarkSUSY_MC_LHE_Moriond2017_Part2
f2fd47fd129dffa3cbeeef3e2b58307a3c9e74a7
733f4aa604978e19131319804f2e2a1a349ea8ad
refs/heads/master
2020-07-15T05:41:40.340270
2017-03-26T16:59:48
2017-03-26T16:59:48
null
0
0
null
null
null
null
UTF-8
C
false
false
31,065
c
{ //=========Macro generated from canvas: cnv/cnv //========= (Tue Nov 29 23:29:00 2016) by ROOT version5.34/36 TCanvas *cnv = new TCanvas("cnv", "cnv",1,1,904,904); gStyle->SetOptFit(1); gStyle->SetOptStat(0); gStyle->SetOptTitle(0); cnv->SetHighLightColor(2); cnv->Range(-27.625,-0.02107824,134.875,...
[ "weishi@rice.edu" ]
weishi@rice.edu
f9d659bd191033cd70555569c581fc50ee82f3fe
fa99924976faae2a5eff5d6c80587a923c1ac851
/code/mactools.h
3b78057eb892a69c0a1444db6d26809efc79bc9e
[]
no_license
aschilds-dev/duke3d-megaton
5ae736ed14ece07e953dec8a42e4c215b69574e8
509fcaa347ffa8698be4829cb6b2133d2091a347
refs/heads/master
2023-01-21T21:04:42.079901
2020-12-01T18:55:58
2020-12-01T18:55:58
null
0
0
null
null
null
null
UTF-8
C
false
false
266
h
// // mactools.h // duke3d // // Created by termit on 1/22/13. // Copyright (c) 2013 General Arcade. All rights reserved. // const char* Sys_GetResourceDir(void); void Sys_ShowAlert(const char * text); void Sys_StoreData(const char *filepath, const char *data);
[ "drtermit@gmail.com" ]
drtermit@gmail.com
6f249de0584568cf7d8efa66544c06a7bd51ebf2
60f520f0dcd4ce2b244c3a5c5e5649516c8e775e
/factorial.c
821de25306a26e849ef5e1c91e615b85e59e69f5
[]
no_license
pradhapakilan/pradhap
30026bc1f0c13231948a36429b33e8e39a029aba
99b9a1a5e150a2c2602afd598a747779edcbd7c3
refs/heads/master
2020-06-16T08:46:03.681550
2019-07-26T09:58:19
2019-07-26T09:58:19
195,527,902
0
0
null
null
null
null
UTF-8
C
false
false
182
c
#include<stdio.h> #include<conio.h> int main() { int fact=1,i,n; scanf("%d",&n); for(i=1;i<=n;i++) { fact=fact*i; } printf("%d",fact); return 0; }
[ "noreply@github.com" ]
pradhapakilan.noreply@github.com
15d431d3687f356917113b4eba3d70f5a46868ee
94243af52f91054deffe0f9dd9ce1dcbd94be68a
/c/c01/ex05/ft_putstr.c
7924f2624baedab5f33d1806106d35fdc20d3679
[]
no_license
samuelteles/42sp-ProjetosBasecamp
78b387c100024ee9876353ee99157f3c72251d8c
4d626fa59038a520f8e959c8c6e5d5849b2f9394
refs/heads/master
2023-04-06T04:22:03.041530
2021-04-17T00:47:40
2021-04-17T00:47:40
352,691,364
0
0
null
null
null
null
UTF-8
C
false
false
1,000
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr.c :+: :+: :+: ...
[ "svasconc@student.42sp.org.br" ]
svasconc@student.42sp.org.br
976bbf68c53966f1cea7ae7e1b71fb4af108aae5
a0da6c5125e1df5345aecd80e818697afd737614
/LENGFACT.c
b340841d5659de3e3bf4065dd247cdb5bb87b252
[]
no_license
atulsinha007/C-source-codes
75ac33effd84870a9b9f4d75162b2613c066843b
e05916b9c95fdfa916f49aedfcdf6ea335c1d532
refs/heads/master
2021-01-12T20:07:09.041139
2016-07-31T06:44:38
2016-07-31T06:44:38
null
0
0
null
null
null
null
UTF-8
C
false
false
488
c
#include<stdio.h> #include<math.h> int main() { long double A = 0.3990899341790575247825035915077; long double B = 0.4342944819032518276414969; long long int n,T; scanf("%lld",&T); while(T--) { scanf("%lld",&n); if(n==0 || n==1) { printf("1\n"); ...
[ "abhinav.khare31@gmail.com" ]
abhinav.khare31@gmail.com
59568519974c47c8ca87504bca520bd45c9e5827
9716453f1798abd28b16f92051235df972e11593
/src/libnsss/nsss_all_setpwent.c
e22411a8b586e92ea9e5b479c52a0e3ffe07ead6
[ "ISC" ]
permissive
Aalbus-linux/nsss
e04235fbbcf8c2ac3e5deec96a1cec4cef99a526
665f02b525042ca5bad73061c71dc94257e23f74
refs/heads/master
2023-02-03T00:26:59.135595
2020-12-18T23:24:00
2020-12-18T23:24:00
null
0
0
null
null
null
null
UTF-8
C
false
false
507
c
/* ISC license. */ #include <errno.h> #include <nsss/config.h> #include <nsss/pwd-unix.h> #include <nsss/pwd-all.h> #include <nsss/nsss-switch.h> #include "nsss-switch-internal.h" #include "nsss-all-internal.h" void nsss_all_setpwent (void) { int e = errno ; if (!nsss_switch_start(&nsss_switch_here, NSSS_SWITCH_P...
[ "ska-skaware@skarnet.org" ]
ska-skaware@skarnet.org
3495b6da8e0ba654ec8b132c9450467cf4373990
83214753e9183327e98af0e6768e9be5385e5282
/kfedit/skill/kurong-changong/heal.c
cb5acd671a3cb8c48e14fc5f8d2f11da5e5f400b
[]
no_license
MudRen/hymud
f5b3bb0e0232f23a48cb5f1db2e34f08be99614e
b9433df6cf48e936b07252b15b60806ff55bb2f3
refs/heads/main
2023-04-04T22:44:23.880558
2021-04-07T15:45:16
2021-04-07T15:45:16
318,484,633
1
5
null
null
null
null
GB18030
C
false
false
913
c
// heal.c #include <ansi.h> int exert(object me, object target) { if( me->is_fighting() ) return notify_fail("战斗中运功疗伤?找死吗?\n"); if ((int)me->query_skill("kurong-changong", 1) < 20) return notify_fail("你的枯荣禅功修为还不够。\n"); if( (int)me->query("neili") < 50 ) // - (int)me->query("max_neili") < 50) ret...
[ "i@oiuv.cn" ]
i@oiuv.cn
14761c02a145935b13da2e050b7c70eee2508c79
f39734b5dd8a9b45b3f520dc5386465c2a263ea9
/c/phd/group/group.c
ad9baa27c370b004d33add20b4a7623aa4dd55f3
[]
no_license
joeytwiddle/code
83c1bc44c752ff13692ccca27133090118dd30ad
17614a1138889be471a27054254dcb8962fb3673
refs/heads/master
2023-08-31T07:15:15.611512
2023-08-20T04:49:52
2023-08-20T04:56:03
12,212,352
30
13
null
2020-04-26T07:15:30
2013-08-19T09:21:28
HTML
UTF-8
C
false
false
794
c
#include <joeylib.c> void main(int argc,String *argv) { ArgParser a=ArgParser(argc,argv); String outname=a.argafter("-o","output filename","group.bmp"); String imname=a.getarg(); int smrad=a.intafter("-r","radius",2); float scale=a.floatafter("-s","scale",0.5); a.done(); randomise(); ...
[ "joey" ]
joey
71d7f62f55416dc276663dbaf323bb824d2758d3
ba6c8c70541a7aacdd4cc2573776dbed9ea0d8f1
/catkin_ws/devel/include/bebop_msgs/CommonCommonStateVideoRecordingTimestamp.h
b931d1e55cd20b474f2767c8b72a160ab987e364
[]
no_license
hotaro161/190703_catkin_ws
74a62fa29a0f940a930df4c023f36f01f30b23f7
711c2665121e7452a2575c75058a037b479f4596
refs/heads/master
2020-06-14T09:03:15.900063
2019-10-10T07:29:05
2019-10-10T07:29:05
194,964,971
0
0
null
null
null
null
UTF-8
C
false
false
108
h
/home/mlab/catkin_ws/devel/.private/bebop_msgs/include/bebop_msgs/CommonCommonStateVideoRecordingTimestamp.h
[ "mlab@mlab-System-Product-Name" ]
mlab@mlab-System-Product-Name
52345299404d5e1456b5afff6b1429a97b7a83db
b763cb8a277e72ac18352a4a2d2fb4d98c9efdd3
/server_unixdomain.c
d44370925280f60aee1a0ca54524e7fca81973fc
[]
no_license
sks007005010/Cworkshop
f5cceb01266828f9ab662de2cd75dbfa7e732905
d83c3801a643bbeb244cb03d46a2f4b48e611bed
refs/heads/master
2020-07-08T21:27:42.338656
2019-08-23T17:04:32
2019-08-23T17:04:32
203,783,915
0
0
null
null
null
null
UTF-8
C
false
false
1,249
c
#include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #define NAME "socket" int main() { int sock, msgsock, rval; struct sockaddr_un server; char buf[1024]; sock = socket(AF_UNIX, SOCK_STREAM, 0); if (sock < 0) { per...
[ "noreply@github.com" ]
sks007005010.noreply@github.com
44a5c9b32c104eb2701cf0ee6e99c062bb5cc078
584e2440b87db134e931a89b8fcff859ade637c1
/stage2/floppy.h
df070c44902fc3bbac9d05b348e2f352c7c66368
[ "BSD-2-Clause" ]
permissive
vendu/Ukko
a86f6690f9b348b65e243678c2b26c993979baaa
0dbb2c9a73ce46d80b404d44fc12554162fe13f0
refs/heads/master
2021-01-18T13:43:00.719129
2016-09-26T02:29:26
2016-09-26T02:33:39
69,205,311
1
1
BSD-2-Clause
2017-12-15T18:13:00
2016-09-26T02:24:49
C
UTF-8
C
false
false
1,579
h
/* floppy.h: Floppy disk interface * * Copyright 2016 Vincent Damewood * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyri...
[ "git@vdamewood.com" ]
git@vdamewood.com
8c680dbe94267cd3b7142a75feb22fa8220ccf5c
9c8921b8cc2b442c565fa93d763666f671612d2b
/tests/string/argsort.c
5fcc5d6091a1b59f398162a37ed1b3b3d7a2dc7f
[]
no_license
iCodeIN/cocass
09f39f02e58f43e8572a99670106d93b863cab9d
5f38dd732ecb659fb75c13293d4e44b57d36e2da
refs/heads/master
2023-08-18T20:26:44.836261
2021-01-18T07:08:46
2021-01-18T07:08:46
null
0
0
null
null
null
null
UTF-8
C
false
false
231
c
int cmp(void* a, void* b) { return strcmp(*a, *b); } int main(int argc, char** argv) { qsort(argv, argc, QSIZE, cmp); for (int i = 0; i < argc; i++) { printf("%s ", *(argv+i*QSIZE)); } putchar('\n'); }
[ "neven.villani@gmail.com" ]
neven.villani@gmail.com
d7417b08fb757ed1e782e37471b3851dc78b753a
761636e4dcf0874a833cd2d2850bc90460dfb23c
/Entregas/ENTREGA3/Capella_Capo_Hegedus/src/cPrograms/leer_sf.c
7dce697429197cf49c60a4fc3c1b1339131efc5b
[]
no_license
EHE781/SOII_SF
48bd2e7de04111f8110725ee849ed416ce818192
e61831a7f005ff0a14484884d46bc237b3a474d4
refs/heads/master
2022-06-07T20:42:40.825291
2022-05-23T11:47:05
2022-05-23T11:47:05
241,928,881
4
0
null
null
null
null
UTF-8
C
false
false
1,243
c
//Autores: Emanuel Hegedus, Bartomeu Capo Salas, Pau Capellá Ballester #include "../headers/bloques.h" #include "../headers/ficheros_basico.h" const char *dir; struct superbloque SB; void *buf[BLOCKSIZE]; int main(int argc, char **argv){ dir = argv[1]; bmount(dir); bread(posSB, buf); memcpy(&SB, buf, sizeof(struc...
[ "emanuel.hegedus18@gmail.com" ]
emanuel.hegedus18@gmail.com
26248993759e0f74827c4c0e6923b4ebfa140630
f9e48f41ea0af7a4c3982857b6fad8d046a180f3
/2.cpuScheduling/cpuSchedulingAlgorithmSJF.c
8a69cd3586a50b5d1fff26aacad5f688e294377f
[]
no_license
RakhiMeena/B-Tech-CS-4th-Semester-Notes-NITK
7d1a6f076e46931bef3f49e9c4b8f39373375ce2
1dfbe75a14d4e22ad86146106d4a80fd97e3ad58
refs/heads/main
2023-06-12T13:05:34.509225
2021-07-06T13:14:22
2021-07-06T13:14:22
383,471,481
0
0
null
null
null
null
UTF-8
C
false
false
1,242
c
#include<stdio.h> int main() { int bt[20],p[20],wt[20],tat[20],i,j,n,total=0,pos,temp; float avg_wt,avg_tat; printf("Enter number of process:"); scanf("%d",&n); printf("nEnter Burst Time:n"); for(i=0;i<n;i++) { printf("p%d:",i+1); scanf("%d",&bt[i]); p[i]=i+1; ...
[ "noreply@github.com" ]
RakhiMeena.noreply@github.com
ba2afe0c17cef54568943b7623fe475fd476235c
4b872cf4b80dbad58b4e4ed6d7ecc427fd531761
/efm8-sample-code/EFM8_Prog/AN945/AN945SW/Firmware/EFM8UB2_SLSTK2001A/Bootloader/USB/inc/USB_descriptor.h
721fb2453d38f15b44e29aef144a2cc2e5463b4c
[]
no_license
summomanom/Electric-Field-Bot
618f1aba895b67887f6d5e6e73fdc814f4611bcd
d50049b1f667951ad36176ec3f8b84930d70c10d
refs/heads/master
2020-05-18T05:36:33.415502
2019-04-30T07:18:40
2019-04-30T07:18:40
184,211,076
0
0
null
null
null
null
UTF-8
C
false
false
5,412
h
/**************************************************************************//** * Copyright (c) 2015 by Silicon Laboratories Inc. All rights reserved. * * http://developer.silabs.com/legal/version/v11/Silicon_Labs_Software_License_Agreement.txt ***********************************************************************...
[ "shawn.l.oconnell@gmail.com" ]
shawn.l.oconnell@gmail.com
b6de716390f9627a6b2b3ff225c41650140e0d5e
b4826acdca64413679d541dd02409e1100c9efa0
/search/sequential_search1.c
bffe832b896aac659bdb56a7f814506f052a6832
[]
no_license
YeoulLee/algorithm
3b7cbf24c3cf3f2d19b560a8001e6e1d6cdb6cd0
b793b891fc9fa50b2d4dcd3872f392e52d2ede00
refs/heads/master
2021-03-04T17:38:13.816304
2020-11-04T14:41:47
2020-11-04T14:41:47
246,053,519
0
0
null
null
null
null
UTF-8
C
false
false
854
c
#include <stdio.h> #include <stdlib.h> // Given an unsorted array, search a key in Array using Sequential Search int sequential_search1(const int array[], int na, int key) { for(int i = 0; i < na; i++){ if(array[i] == key){ return i; } } return -1; } int main(void) { int *a...
[ "noreply@github.com" ]
YeoulLee.noreply@github.com
f19efc5af9d4a336d3aa84f076e163861b25d68f
be66bc9edc651eba46e6e0788f6c48e70d34e097
/src/enc_mode.c
69a2314d875970236943576712da9a9d7edaa055
[]
no_license
JianCloudLucky/HPM3.2-illumination-compensation
e0a83d8c29b296cfebf9517c50aa452310dedced
494e7d94641e765f475ee63a30d68c9e1652389c
refs/heads/master
2020-05-07T22:44:59.063347
2019-04-12T07:58:08
2019-04-12T07:58:08
180,953,048
0
0
null
null
null
null
GB18030
C
false
false
151,882
c
/* ==================================================================================================================== The copyright in this software is being made available under the License included below. This software may be subject to other third party and contributor rights, including patent rights, and no ...
[ "dujiangspost@163.com" ]
dujiangspost@163.com
f85b24bda1b02ec4c543577c0cb0ea7da3237283
65e6f7093438b1f2704df864bba0255c09c92593
/src/base-particle-filtering/include/mobile_robot_wall_cts.h
58a41abb7851dd1293a2c8ece755cb7748d75c38
[]
no_license
phranq0/ros-bfl
58f1b45fca0828793db811f3270dd4e5f359cfd6
edad8374eac92f293d806ea152f437744ea3a8a2
refs/heads/master
2023-03-01T18:27:14.197402
2021-02-05T11:07:42
2021-02-05T11:07:42
333,708,635
0
0
null
null
null
null
UTF-8
C
false
false
4,563
h
// Copyright (C) 2006 Klaas Gadeyne <first dot last at gmail dot com> // Tinne De Laet <first dot last at mech dot kuleuven dot be> // // This program 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 Sof...
[ "francesco95grella@gmail.com" ]
francesco95grella@gmail.com
e6d81c1a97d558323f8176be61dfc121bed40faf
6090c10bbf5c1cbfdd3a89338edc3b897e5b2c70
/lista/lista.c
18c4c5ba4f1e0124306057968b39f184cef8886c
[]
no_license
samu4ne/TPSIT
874d8738fdfef12c02d8b0d41e7ed9fb31817d59
321f607292a2f1e3feb18a2a64662ca69955b75b
refs/heads/main
2023-04-08T23:11:30.572045
2021-04-14T17:04:52
2021-04-14T17:04:52
302,278,566
0
0
null
null
null
null
UTF-8
C
false
false
2,659
c
#include <stdio.h> #include <stdlib.h> struct typedef El { int valore; struct El* next; }El; //esercizio 1 void push(struct El* l,int a){ struct El* appoggio; appoggio = l; while(appoggio->next!=NULL){ appoggio = appoggio->next; } appoggio->next = (struct El *)malloc(sizeof(...
[ "noreply@github.com" ]
samu4ne.noreply@github.com
64ab91258cb70d4a94f0da28dfe38b76a2679d4b
1d09f862f8e42435fe33b1e8d8e71dd49411f4f6
/Lab9_PWM/header/timer.h
81cccbec0ab1e05f19072c155a4f90b647a97b9e
[]
no_license
sumar001/CS120B-spring-20
cd0e9e73f655f8c5d5cf4e8277ecae65bbedabee
1eefeb974fe7eea4d9732e4c4c0d22b1bde37ccf
refs/heads/master
2021-05-24T12:31:47.502375
2021-02-17T18:55:34
2021-02-17T18:55:34
253,563,226
0
0
null
null
null
null
UTF-8
C
false
false
1,953
h
#include <avr/interrupt.h> //TimerISR() sets this to 1. C programmer should clear it to 0. volatile unsigned char TimerFlag = 0; //Internal variables for mapping AVR's ISR to our cleaner TimerISR model. unsigned long _avr_timer_M = 1; //Start count from here, down to 0. Default 1 ms. unsigned long _avr_timer_c...
[ "sumar001@wch136-06.cs.ucr.edu" ]
sumar001@wch136-06.cs.ucr.edu
538238d79155ace3a484ea27b43b9c4a9de9caaf
d5a6eeaafac359a06c473de31b12611d03a946c7
/module3 - advanced char driver/completion.c
6824aebfb765d579601d60ca93d330a0f4167318
[]
no_license
nihadjifrikonathputhiyamaliyakkal/Linux-device-drivers
5e3f73252839f49ffcd719e387a1e7e41c8774e1
4f15b3b46b7dd028c6a51f15a1b3daf0b7bd09d7
refs/heads/master
2023-03-04T04:48:15.751995
2018-06-25T07:08:56
2018-06-25T07:08:56
null
0
0
null
null
null
null
UTF-8
C
false
false
3,878
c
/* * Simple charecter driver with wait queue * cat /dev/scull goes to block, on a condition * wakes up only when the condition is met, dmesg to check * execute echo "hello" > /dev/scull the writer process * wakes up the reader check the dmesg */ #include<linux/kernel.h> #include<linux/module.h> #include<linux/i...
[ "nihadjifri@gmail.com" ]
nihadjifri@gmail.com
9402517826376b46574d3252e09950e12b627cbe
073072fbfe90062479347813f5c6b7602f30e329
/d/shaolin/fumoquan.c
50438ddc6f0e739bdd67261f1b703097cd5816ca
[]
no_license
cao777/mudxkx2019
c06905cc8bf91de2d95e8bd0d6098e0c0c50f452
3abcba647e1342db1d73acdb09b5f6f3b6dd5e80
refs/heads/master
2023-03-16T05:57:31.164287
2019-04-10T09:33:47
2019-04-10T09:33:47
null
0
0
null
null
null
null
GB18030
C
false
false
1,852
c
// Room: /d/shaolin/fumoquan.c // Date: YZC 96/01/19 #include <ansi.h> inherit ROOM; void create() { set("short", "金刚伏魔圈"); set("long", @LONG 三棵大松树的树干上各挖了个可容身一人的大洞,有个洞口 露出黑色僧袍一角,似乎住得有人。中央是一片大草坪,中心处 光秃秃的,似乎经常受大力击打,以致寸草不生。 LONG ); set("exits", ([ "out" : __DIR__"qyping", ])); set("objects",([ CLASS_D("shaoli...
[ "prion.w@gmail.com" ]
prion.w@gmail.com
46712a78cadb6301f01f252b412e5dd812039c24
214ba68f67e85159f70541b83d5e3bcf585f9387
/main.c
dd84e1f2d8ef594437b6d42ca79e7564640d9e6f
[]
no_license
alextaylor06/Project5
81f9a5a938b6cd62cdb059e23a07467337af38de
8fad086ffcfa0a9974a3b817ac97e09574f8f003
refs/heads/master
2020-05-04T16:55:45.278336
2019-04-09T20:38:45
2019-04-09T20:38:45
179,292,432
0
0
null
null
null
null
UTF-8
C
false
false
1,310
c
#include <msp430.h> #include "lcd.h" #include "RTOS.h" #include <stdio.h> /** * main.c */ int taskA(void); //Blink Red LED int taskB(void); //Blink Green LED int taskC(void); //Display int main(void) { char error1; RTOSsetup(); initLCD(); TA1CTL = 0x0110; //Set TA0 to up mode, ACLK TA1CCR0 = 3...
[ "alex.taylor@valpo.edu" ]
alex.taylor@valpo.edu
ff424dab47f7ff981697f01e1a505b6d3fafbf01
c5faed877a1c887ac862a4dfe9caf97e6b1baabc
/http.c
8f87fce855c78335a9cf11faf25bc38b96eee224
[]
no_license
sssjolin/sws
3cd1a28c5d83286df43b19ded4fd9e44f1b47599
c12e2cf7670a9599e4f98ba8a1513aa1e298b76b
refs/heads/master
2020-05-24T14:44:53.125781
2015-03-24T09:23:10
2015-03-24T09:23:10
32,787,354
0
0
null
null
null
null
UTF-8
C
false
false
2,855
c
#include "http.h" #include <errno.h> #include <stdio.h> #include <string.h> #include "log.h" #include "util.h" void response_header_and_log(int fd, int status_code, int rsp_flags, time_t last_modified, int content_length, const char *ip_addr, const char *req_firstLine) { char *date_str = "", *last_modified_str;...
[ "hqu1@stevens.edu" ]
hqu1@stevens.edu
6d193681c35d82b817f7578ea244f847642a7852
3d44af6633b26423b8db63c7063a70ff561d81d3
/niuke/strcat.c
60e1da80cdb1d31ddf2d689b122946e9a3609ce7
[]
no_license
ziming-liu/basic-C
1631c951f8a589b8e7babbbfba362e06b06d96b6
28679379e9c333968da501c8bb3badf701829fa6
refs/heads/master
2021-09-09T02:57:01.525183
2018-03-13T12:35:21
2018-03-13T12:35:21
98,203,123
0
0
null
null
null
null
WINDOWS-1252
C
false
false
238
c
//Á¬½Ó×Ö·û´® #include <stdio.h> #include <string.h> int main(){ char s1[1000],s2[1000]; int i=0,j=0; scanf("%s%s",s1,s2); while(s1[i]) i++; while(s2[j]){ s1[i++] = s2[j++]; } s1[i] = '\0'; puts(s1); return 0; }
[ "zimingemail@163.com" ]
zimingemail@163.com
2fdd83750389e5eac14c56b9b37461c8661a4760
44ab57520bb1a9b48045cb1ee9baee8816b44a5b
/Assist/Code/Editor/Shadow/ShadowEditorAssist/ShadowEditorAssistNoImport.h
c8ea6cfc99321c663ae035023fccc9a5728bffe3
[ "BSD-3-Clause" ]
permissive
WuyangPeng/Engine
d5d81fd4ec18795679ce99552ab9809f3b205409
738fde5660449e87ccd4f4878f7bf2a443ae9f1f
refs/heads/master
2023-08-17T17:01:41.765963
2023-08-16T07:27:05
2023-08-16T07:27:05
246,266,843
10
0
null
null
null
null
GB18030
C
false
false
485
h
/// Copyright (c) 2010-2023 /// Threading Core Render Engine /// /// 作者:彭武阳,彭晔恩,彭晔泽 /// 联系作者:94458936@qq.com /// /// 标准:std:c++20 /// 版本:0.9.1.2 (2023/07/31 14:34) #ifndef SHADOW_EDITOR_NO_IMPORT_H #define SHADOW_EDITOR_NO_IMPORT_H #include "Helper/UserMacro.h" #ifndef BUILDING_SHADOW_EDITOR_NO_IMPORT #define B...
[ "94458936@qq.com" ]
94458936@qq.com
d277f5a5a5bd161da2e9c9271134c277f7b38acb
d2675b35c56cae19cb70d794091c9bd6e546c5d0
/noptrace.c
f82d8b50fd633aed9c79a7192ed1fdd1103efdab
[]
no_license
pld-linux/kernel-misc-noptrace
a5fbdab0e5bb183334a0b416eafa3752531c5897
18789bb7b3bd460e1082ece88364ead2894c25e9
refs/heads/master
2021-01-01T16:50:36.404079
2007-02-13T08:06:37
2012-06-24T12:13:13
null
0
0
null
null
null
null
UTF-8
C
false
false
2,221
c
/* * noptrace kernel module. * * Copyright Brian Hatch, 2001. Released under the GPL. * taken from http://www.hackinglinuxexposed.com/tools/p/noptrace.c * modified by BartOwl to NOT taint the 2.4 kernels * * Disable the ptrace system call entirely. Used * to help prevent attacks against setuserid binaries * o...
[ "feedback@pld-linux.org" ]
feedback@pld-linux.org
64ca8258ae3ff28ae9a2bf82bf21910c3b76d6e4
9453780e5f9cfbb79dc9d16f62c11c3131d92369
/sem3/TADS/tisd2/constants.h
961d288f6b4c79f7c5ed70cfb85e9581c9186e73
[]
no_license
antonidass/BaumanStudy
4842a262369f2e2e69d13c44a1507cdcddfb7bac
28dbb7eb6cf9787d1dd406a27c3b753101c78598
refs/heads/main
2023-05-13T22:52:01.427924
2021-06-06T22:39:47
2021-06-06T22:39:47
323,878,259
0
0
null
null
null
null
UTF-8
C
false
false
650
h
#pragma once #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/times.h> #include <time.h> #define OK 0 #define MAX_ADDRESS 80 #define MAX_FLAT_TYPE 40 #define ERROR_IN_EDGE -9 #define REPEATS 10000 #define MAX_POSSIBLE_TIME 2147483647 #define MAX_LINE 200 #define ERROR_IN_REPAIR_DATA -1 #defi...
[ "akrikoff@gmail.com" ]
akrikoff@gmail.com
d15716fa6fac34a92473f1deaf847943847ee0bf
e693d2f337f4623668835f0bb487aadec8e4516c
/bundles/pubsub/pubsub_protocol/pubsub_protocol_lib/include/pubsub_wire_protocol_common.h
7dd1ef2e92b7540a9d14de076fe2f020b142ad4d
[ "LGPL-2.0-or-later", "Apache-2.0", "BSD-3-Clause", "MIT" ]
permissive
dhbfischer/celix
6411cb98f686a758cb9f70e3b66271cd885a32b7
8e9cebe7ea88bc0b425031c37d0948057a75bc92
refs/heads/master
2023-03-16T04:53:42.932134
2022-11-09T19:38:03
2022-11-09T19:38:03
198,449,727
0
0
Apache-2.0
2021-01-05T13:07:22
2019-07-23T14:41:35
C
UTF-8
C
false
false
2,858
h
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
[ "noreply@github.com" ]
dhbfischer.noreply@github.com
562eafce6241d994ccbabba8b40a01cf29238fe1
0dde4e977c748fe1dfa5458d9bf790e38ae5b3be
/AcceptanceCorrections/RxRyRz/binsinbins/ac1_3x2/SimEXiBins.h
a659dfef7209d8bc0be95704fa214549fd565c00
[]
no_license
jasonbono/CLAS
e27a48f96b753e11a97803bbe4c782319c4f8534
c899062b8740cdb6ef04916d74f22cebc5d2c5f8
refs/heads/master
2020-05-24T03:56:12.542417
2019-05-16T17:50:31
2019-05-16T17:50:31
187,074,934
0
0
null
null
null
null
UTF-8
C
false
false
36,130
h
#ifndef SIMEXIBINS_H #define SIMEXIBINS_H // for 30x2 bins const int Nbq = 20; const int Ncq = 2; TCut exibin[Nbq][Ncq]; Double_t eVal[Nbq + 1]; Double_t xVal[Nbq][Ncq + 1]; exibin[0][0] = " beam > 2.800000 && beam < 3.141145 && Xcmtheta > -1.000000 && Xcmtheta < -0.417430 " ; exibin[0][1] = " beam > 2.800000 && ...
[ "jason.s.bono@gmail.com" ]
jason.s.bono@gmail.com
868d806a82b15a99362f7a915eab4a0d66ed6843
813028300811cf135f96e302eb4de86f1f5e5eb1
/qnx/root/operational_radar_code/kod.dds/ros/fftw-3.2.2/dft/simd/codelets/n1fv_16.c
73bea6d87fb9df8bdaf2aa84017da643610f7e51
[ "GPL-2.0-or-later", "GPL-2.0-only", "MIT" ]
permissive
UAF-SuperDARN-OPS/SuperDARN_MSI_ROS
228b864fe2b69c6bbbfad3a7df968168ebca1498
c6c3ae2fccd4694a9c8e6047e9df5febcb3c391b
refs/heads/master
2022-11-22T07:58:52.415306
2013-07-30T06:29:50
2013-07-30T06:29:50
39,792,221
1
3
MIT
2022-11-17T18:45:31
2015-07-27T18:58:01
C
UTF-8
C
false
false
11,585
c
/* * Copyright (c) 2003, 2007-8 Matteo Frigo * Copyright (c) 2003, 2007-8 Massachusetts Institute of Technology * * This program 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 2 of the Li...
[ "jspaleta@fedoraproject.org" ]
jspaleta@fedoraproject.org
721afe7cdec68d230297097c6b92cb8b32458c9a
4d7e3dca8b56ca52dbd7251f9433c03c2c0e259d
/Assignment3/3.MutexStackQueue/circularbuffer.c
5ecf23ac4867f0e16c67d229ec1d0f78fcd85916
[]
no_license
99003521/LINUX_Assgnment
035c1839f828b01e5e0ab488a762300b0dac59e4
57f545339f8b69b947aec288a6df1c7596ab7afe
refs/heads/main
2023-03-17T06:56:47.392819
2021-03-06T08:07:13
2021-03-06T08:07:13
343,411,183
0
1
null
null
null
null
UTF-8
C
false
false
3,113
c
#include <pthread.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include<semaphore.h> #define N 5 //maximum number of items #define Size 5 //biffersize sem_t empty; sem_t full; int front = -1; int rear = -1; //index int queue[Size]; pthread_mutex_t mutex; void display...
[ "amanajay.kalaskar@ltts.com" ]
amanajay.kalaskar@ltts.com
0854a364634c80ed332af67bb9424e3272980e91
06a546afa65f4590dbf681388af673229a8a14d7
/libft/src/mem/ft_bzero.c
c65110bdabb3472694243b4c332748ab8adf954c
[]
no_license
mbelaloui/Coreware
dac7f3eabc6d1772114358dd1c24467b6bce0d0e
f3652dbb7fa49fa1b2505e55fc02abd37412d08e
refs/heads/master
2020-03-21T08:01:32.570281
2018-10-25T07:11:56
2018-10-25T07:11:56
138,314,551
0
1
null
2018-09-27T14:09:05
2018-06-22T14:50:57
C
UTF-8
C
false
false
997
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_bzero.c :+: :+: :+: ...
[ "mbelalou@e3r3p8.42.fr" ]
mbelalou@e3r3p8.42.fr
f243ef7ddcefef6e28d8d51ef6ef440614d5cea3
75ee612244f9cd9fbb1ff63ac84c0cb70b62a291
/SDK_V4.7.1/driver/board/component/wifi/mt5931/inc/CFG_Wifi_File.h
1eb6d47ad0e9b67ddf0e3f6cf19502ac3cbda916
[]
no_license
KqSMea8/demoMT
0a0954fb3f55676fdd9d14d0bc0b043e60590060
3fb99ed5e11599a09f37d6e9b40ec1e8b9ec98b9
refs/heads/master
2020-06-01T09:35:14.829329
2019-06-07T11:16:06
2019-06-07T11:16:06
null
0
0
null
null
null
null
UTF-8
C
false
false
8,626
h
/* Copyright Statement: * * (C) 2005-2016 MediaTek Inc. All rights reserved. * * This software/firmware and related documentation ("MediaTek Software") are * protected under relevant copyright laws. The information contained herein * is confidential and proprietary to MediaTek Inc. ("MediaTek") and/or its ...
[ "v.khoadd2@vsmart.net.vn" ]
v.khoadd2@vsmart.net.vn
15f5e3768cb5ed6c4da6d47b6080ff3d71f3d3e4
82c5ef0d3fd299f91896fcc2cfb6798cd977ff7c
/2313c/STR_ACCU.C
471de1a5732571e420d2e32373173162f4a46db4
[]
no_license
nishant07/CSI_C_Programs
0688d9c32329058a2bdf8e0bc18dd8d2af29eaf9
b7e806b17ff7cf1bfff6dd7956ec7f8e81b5d541
refs/heads/master
2021-01-19T14:30:48.064158
2015-12-24T05:16:01
2015-12-24T05:16:01
41,284,543
0
0
null
null
null
null
UTF-8
C
false
false
258
c
#include<stdio.h> #include<conio.h> #include<string.h> voi main() { char a[50],b[50]; int i,j,ch[10]={0},z=0; printf("Enter ur string"); scanf("%s",a); for(i=0;a[i]!='\0';i++) { for(j=0;a[j]!='\0';j++) { if(a[i]!=a[j]) { b[z]=a[i] z++;
[ "shah.nishant92@gmail.com" ]
shah.nishant92@gmail.com
fee1e89d6f3bc28891b99696f518edb0c4834679
903c45082bd0d4fbb0a0d6a289b5294d8d05c314
/sys/arch/ia64/stand/efi/include/efipxebc.h
c989e60209a86d93084233db3aee6e1c81a469fd
[]
no_license
tombibsd/netbsd-src
0552d62659412e821163c945c62b7555d1e616d2
7f0f8c8c4b00f7c47700b8260a5cbd627d73fe7c
refs/heads/master
2021-01-21T04:54:21.541793
2016-06-17T00:56:40
2016-06-17T00:56:40
24,783,931
0
0
null
null
null
null
UTF-8
C
false
false
15,145
h
/* $NetBSD$ */ /* $FreeBSD: src/sys/boot/efi/include/efipxebc.h,v 1.2 2002/05/19 03:17:20 marcel Exp $ */ #ifndef _EFIPXEBC_H #define _EFIPXEBC_H /*++ Copyright (c) 1998 Intel Corporation Module Name: efipxebc.h Abstract: EFI PXE Base Code Protocol Revision History --*/ /* * PXE Base Code protocol...
[ "uebayasi@tombi.co.jp" ]
uebayasi@tombi.co.jp
b0ea5a4541cbb29fdb0c7e38178a0ebd18f8d4d7
dbf5e6458d6e17bc51cf3328724d1f462edd04a2
/networkDgramSocket/src/server.c
23c4fac5be3063257cb5a20ca1486de445e52337
[]
no_license
asilyihong/sockets
8a24f8f4118696a4f9129884b5e2a8b9f366216e
46211a581d1b770f889e0b38e61fed2212904e0c
refs/heads/master
2021-01-01T05:31:48.978820
2013-07-13T14:49:13
2013-07-13T14:49:13
null
0
0
null
null
null
null
UTF-8
C
false
false
1,543
c
#include <netinet/in.h> #include <netdb.h> #include <signal.h> #include <sys/types.h> #include <sys/socket.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include "utils.h" int main(int argc, char *argv[]) { // prevent SIGPIPE struct sigaction sa; sa.sa_handler = SIG_IGN...
[ "asil.yihong@gmail.com" ]
asil.yihong@gmail.com
419f908365970c52f6e38c489dfbd06a4fc33e9d
fcd6647e9e8861bf05aa678faba4b913074edf3e
/mbed-os/targets/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFM32WG/device/efm32wg980f64.h
b2c2faa03b32bfb7815fd454c8ee3f366d043a75
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ashok-rao/BLEClient_mbedDevConn_Watson
a23386def82d0da5fc8bbbe3fc79cbeb93a37e92
f162ec8a99ab3b21cee28aaed65da60cf5dd6618
refs/heads/master
2020-06-23T07:50:16.852047
2017-07-14T09:10:05
2017-07-14T09:10:05
74,658,976
1
3
NOASSERTION
2020-03-06T23:26:39
2016-11-24T09:40:20
C
UTF-8
C
false
false
25,226
h
/**************************************************************************//** * @file efm32wg980f64.h * @brief CMSIS Cortex-M Peripheral Access Layer Header File * for EFM32WG980F64 * @version 5.0.0 ****************************************************************************** * @section License * <b>Co...
[ "Ashok.Rao@arm.com" ]
Ashok.Rao@arm.com
e722af679873308941f13dc4e596c1a2634aa4fe
be3167504c0e32d7708e7d13725c2dbc9232f2cb
/mame/src/mame/video/antic.c
6352149899a19de5a2dee87f58bf0ff2429efdae
[]
no_license
sysfce2/MAME-Plus-Plus-Kaillera
83b52085dda65045d9f5e8a0b6f3977d75179e78
9692743849af5a808e217470abc46e813c9068a5
refs/heads/master
2023-08-10T06:12:47.451039
2016-08-01T09:44:21
2016-08-01T09:44:21
null
0
0
null
null
null
null
UTF-8
C
false
false
14,189
c
/****************************************************************************** Atari 400/800 ANTIC video controller Juergen Buchmueller, June 1998 ******************************************************************************/ #include "emu.h" #include "cpu/m6502/m6502.h" #include "includes/at...
[ "mameppk@199a702f-54f1-4ac0-8451-560dfe28270b" ]
mameppk@199a702f-54f1-4ac0-8451-560dfe28270b
0cf692afee38ec56221bb736974083a077488f58
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/zfs/module/lua/extr_lgc.c_markbeingfnz.c
624c3785052130c3af9b99f1cc1b829b1062f70f
[]
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,011
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
34c9eb2b9ad8009e09cbb031940bb02357bd55cd
d16a65e5b80240da6817b63e8f6187f0415460e8
/fxmc/FXAT/arc_fxat0401/fx_smt_create_instance.arc
3acca0a791a6e9ac2fbc25617bdf36b3773fbd59
[]
no_license
cortlandstarrett/graveyard
af841e6426466bf76fc342a7b9d6cdb1f6916ef9
a10972b1eca47741f424639c1a7af55dafab211f
refs/heads/master
2020-12-14T11:56:35.949085
2018-10-22T18:40:16
2018-10-22T18:40:16
60,371,947
0
0
null
2016-06-03T19:15:34
2016-06-03T19:15:26
Java
UTF-8
C
false
false
351
arc
.if ( te_class.Persistent ) ${ws}${te_var.buffer} = (${te_class.GeneratedName} *) ${te_instance.module}\ ${te_instance.create_persistent}\ ( ${dom_id}, ${te_class.system_class_number} ); .else ${ws}${te_var.buffer} = (${te_class.GeneratedName} *) ${te_class.GeneratedName}_Create(); .end if .if ( "" != init_uniques ) ./...
[ "cort@roxsoftware.com" ]
cort@roxsoftware.com