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
813363fa672d7238dc2504a4a0455c2dee3a2533
25b0e82ec0ba2b667e6ae429e59e19333a641723
/Networks/Project/src/tcp_header.c
4bf0886b21f179a6b0a514213bff9d608250b485
[]
no_license
donkhan/msc
cf897a6dbfd72845074d13842351e49ebcf04557
73bc12fd3ad86e6915f51adc08af836dfdc52747
refs/heads/master
2021-07-10T06:43:52.687825
2020-11-09T06:54:14
2020-11-09T06:54:14
211,588,078
0
0
null
null
null
null
UTF-8
C
false
false
5,896
c
#include "tcp_header.h" #include "lib.h" #include "convert.h" #include <stdio.h> #include <string.h> #include <stdlib.h> struct tcp_header* get_sample_tcp_header() { struct tcp_header *tcp_header = (struct tcp_header*) malloc( sizeof(struct tcp_header)); tcp_header->src_port = 4; tcp_header->dst_port = 13; tc...
[ "routetokamil@gmail.com" ]
routetokamil@gmail.com
cb004f6bfb3f42101b6a9b0fc6254b406f774228
e2b00e6396de858f2d28daf029151163cfba86c3
/src/keyword.h
af392fb77f2b8c7f33affd75805081249e782c6c
[]
no_license
tony-o/iroc
e4667712a4b727a4f84246b98bb8724118828651
4907a0c81a182b5438b42a6063b2b6fad5cfd9b0
refs/heads/master
2022-11-15T05:54:44.581971
2020-06-29T15:19:06
2020-06-29T15:19:06
273,263,549
0
0
null
null
null
null
UTF-8
C
false
false
404
h
#ifndef __KEYWORD_H__ #define __KEYWORD_H__ #include "token.h" static char* keywords[] = { "and", "obj", "else", "false", "fun", "for", "if", "undef", "or", "print", "ret", "parent", "me", "true", "var", "while" }; static token_type keywords_map[] = { AND, OBJ, ELSE, FALSE, FUN, FOR, IF, UNDEF, OR, PRINT, ...
[ "tonyo@tonyos-MacBook-Pro.local" ]
tonyo@tonyos-MacBook-Pro.local
76951af2cbe7fc1cd2db637c3b2dac78138b9123
ab64cc2363c06fadef09326f52a7023b8af4168a
/week04/ex1.c
922a24709bcaf93aebe4958e1f5410c9ca86ced2
[]
no_license
vanya6537/operation-systems-C-workaround
8fdf8f02fbcc76241eaf4a40b205cd5005bbea10
fff1a69329f75d62f0fd06ce6764ef6a840b61c1
refs/heads/master
2022-12-10T16:34:56.790718
2020-09-09T20:14:01
2020-09-09T20:14:01
290,601,019
0
0
null
null
null
null
UTF-8
C
false
false
396
c
#include <stdio.h> #include <sys/types.h> #include <unistd.h> /* Forks process into two: Parent and Child * If fork() returns 0 - it is a Child process | else - Parent */ int main() { pid_t id = fork(); if (id == 0) { printf("Hello from child [PID - %d]\n", getpid()); } else if (id > 0) { ...
[ "vanya6537@mail.ru" ]
vanya6537@mail.ru
b276c21cf1967c83c05a7ffa85a95acd06c8460e
fd678029911e9e4c96d7ea8f96269f08e3c7617d
/Buffers & UARTS/include/common/report.h
58f70dd19c1ae6404060d1d2821f4f541fb1e8d4
[]
no_license
jainsarthak277/Principles-of-Embedded-Software
3ad24245683413e641623ebccfa40c335c49d4d1
e21378957379f335de43a2fea1fb290e1a3bafa6
refs/heads/master
2020-03-29T18:24:30.399839
2019-05-17T09:56:24
2019-05-17T09:56:24
150,210,551
0
0
null
null
null
null
UTF-8
C
false
false
565
h
/*********************************************************************************** * @report.h * @This file contains dependent include files and variable declaration for report.c * * @author Vatsal Sheth & Sarthak Jain ************************************************************************************/ #include "ua...
[ "noreply@github.com" ]
jainsarthak277.noreply@github.com
ad4a17d08425cb651b6d96b1130e0e8b440b8dc0
f9c615dab23de60046c4d52a84145637a28a3c75
/Lab2_Embsys_Servo_v2/src/main.c
aba37d5a4208f86d9976053c39d325d5ab4c8c2f
[]
no_license
stevensim226/Lab2_Embsys_Servo
044c68750364a8306da7969e3f19f062ae615a3a
1072effd5fbc619ee463fafdeb2c4cb442b95b16
refs/heads/master
2023-09-02T15:19:28.335987
2021-11-23T15:07:58
2021-11-23T15:07:58
417,466,375
0
0
null
null
null
null
UTF-8
C
false
false
903
c
#include <asf.h> #include <stdio.h> #include <ioport.h> #include <board.h> void PWM_Init(void) { /* Set output */ PORTC.DIR |= PIN0_bm; /* Set Register */ TCC0.CTRLA = (PIN2_bm) | (PIN0_bm); TCC0.CTRLB = (PIN4_bm) | (PIN2_bm) | (PIN1_bm); /* Set Period */ TCC0.PER = 16000; } int main (vo...
[ "stevensim226@gmail.com" ]
stevensim226@gmail.com
b151e9b2582c0f4baa59818814be9926d6511b73
3a9f6d2ac63c432c4c8813b9c8a7a1f4218e7d66
/gecklib/mcu.h
ba345673a328a1764fb92d61b57fab07854439e0
[]
no_license
kokjo/how_to_short_circut
5a2b45072f59dd8e285edbeabf78e47fc8af5259
849b6948ee78e18c8cab0cbd1a242c7a0b84422a
refs/heads/master
2021-05-11T15:35:53.976366
2018-04-26T17:27:05
2018-04-26T17:27:05
117,734,348
1
0
null
null
null
null
UTF-8
C
false
false
197
h
#ifndef __HEADER_MCU__ #define __HEADER_MCU__ // #define EFM32HG309F64 (1) #include "config.h" #include "em_device.h" #include "gpio.h" #include "usart.h" #include "leuart.h" #endif
[ "mathias@hall-andersen.dk" ]
mathias@hall-andersen.dk
73398d9dce8c902c0da16b91db85cab7902b1681
57969440f1594a82c2545bab2edcde1ff2b0cfeb
/src/main.c
7dd9e8f8e0f3ce9d5a846ca795b6fd5072056f4a
[]
no_license
Nat-zewge/ARM_Led
4e5ee918015a57b55946507d9cc343cfceff7912
e76e6c49c40dbcf1ed8ad5501985692b3d3e9e04
refs/heads/master
2021-01-13T03:28:32.156917
2016-12-30T18:01:45
2016-12-30T18:01:45
77,539,412
0
0
null
null
null
null
UTF-8
C
false
false
216
c
#include"led.h" #define LOOP_COUNT 0x3FFFFF int main() { led_init(); for(;;){ led_off(); delay_t(LOOP_COUNT); led_on(); delay_t(LOOP_COUNT); led_off(); } return 0; }
[ "nzewge35@gmail.com" ]
nzewge35@gmail.com
58a06f82842367464e892b553a1d3ef4f30cc15f
598737b786a20889dc6acd468478baf4972535b3
/src/sys/arch/sparc/include/apmvar.h
0b5bb00819d298b094221174f0b03aef36d3c72c
[ "BSD-3-Clause" ]
permissive
shisa/shisa-netbsd
5c8e289de2a48b6d8f39bd3add9ca4ea48fec1da
28d999d1c25107c126e0a458a97b9397aae592ef
refs/heads/master
2021-01-01T05:33:32.619808
2008-05-26T04:27:54
2008-05-26T04:27:54
32,793,680
1
2
null
null
null
null
UTF-8
C
false
false
2,132
h
/* $NetBSD: apmvar.h,v 1.2 2002/10/14 02:08:39 takemura Exp $ */ /*- * Copyright (c) 1995 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by John Kohl. * * Redistribution and use in source and binary forms, with or without * modifi...
[ "keiichi@mobilegravity.sfc.wide.ad.jp" ]
keiichi@mobilegravity.sfc.wide.ad.jp
79e7ca118f597219d23e8fb3aaf613516823f3ab
53b7cb37f4d74f767d7a8aa6d8a18d8977f21d1b
/Projects/ble/RunningSensor/Source/runningSensor.c
52d050a318dccf8b7d8230d602e2bbe94e159219
[ "MIT" ]
permissive
lixianyu/VultureEgg141
31719fc9f534a3c8abedaf71d4ae8cea8af2c132
1cde7bdc6b7f7e34a236898c067c05567a923b8d
refs/heads/master
2021-05-04T11:35:16.805926
2018-03-09T22:54:59
2018-03-09T22:54:59
52,569,058
4
0
null
null
null
null
WINDOWS-1258
C
false
false
32,399
c
/************************************************************************************************** Filename: runningSensor.c Revised: $Date: 2014-09-04 11:12:26 -0700 (Thu, 04 Sep 2014) $ Revision: $Revision: 40011 $ Description: This file contains the Running Speed and Cadence (RSC) sam...
[ "lbonus@163.com" ]
lbonus@163.com
9e0c3929c5e7c353859a72993036357e696ef28d
9448a00a8e7fb4f72bc4c2e38f2a66e9441bcab7
/whileloop.c
f33c16578f9e1d39ee9998e7bb5bfbc30c68aeb4
[ "MIT" ]
permissive
Nataliia-github/test
752b0ce2837279f113a92aca3f81f7feaa1e29f1
868f1f9a6460adc379eeda4edbde6cc441d30e1f
refs/heads/main
2023-06-29T00:56:36.908852
2021-07-25T14:33:21
2021-07-25T14:33:21
382,121,681
0
0
null
null
null
null
UTF-8
C
false
false
282
c
#include <stdio.h> int main(){ float f, sum = 0; do { printf ("Enter a number: "); scanf ("%f", &f); sum += f; } while ( f != 10.0 ); printf ("Sum = %.6f\n", sum); // while (sum >= 10 && sum <=100){ // printf ("The result between 10 and 100"); // } return 0; }
[ "n.cheban@gmail.com" ]
n.cheban@gmail.com
0cf12ab2d93d6f1bccafc11f60caca0c51625abb
b8d086b999fb930396b440d35b97ed5c9b4ea052
/Lab3/zad2.c
4964c9b0c212fb566eca1c61fd933d1aa440e1a3
[]
no_license
elemisek/AGH-PP
deafc98fbd23407cdb24f9d43557ed650f12483c
ec55f4bb80556f8b4e0ff77b84a8d297775160c0
refs/heads/master
2022-07-04T19:11:19.231649
2020-05-14T22:30:51
2020-05-14T22:30:51
263,725,654
0
0
null
null
null
null
UTF-8
C
false
false
862
c
#include <stdio.h> void swap(int *a, int *b) { int temp; temp=*a; *a=*b; *b=temp; } void sort(int a, int b, int c) { printf("1. a = %d, b = %d, c = %d ", a, b, c); if(a>b) { swap(&a, &b); printf("2. a = %d, b = %d, c = %d " ,a, b, c); } if(a>c) { swap(&b, ...
[ "50302254+elemisek@users.noreply.github.com" ]
50302254+elemisek@users.noreply.github.com
fa65d80323a84f854ef158a14cbcf86e7fd52683
2bdedcda705f6dcf45a1e9a090377f892bcb58bb
/src/main/output/generic_job_family_question_minute_mother.c
ab13adc08a9c9b4f33525212094c8ed0120baac0
[]
no_license
matkosoric/GenericNameTesting
860a22af1098dda9ea9e24a1fc681bb728aa2d69
03f4a38229c28bc6d83258e5a84fce4b189d5f00
refs/heads/master
2021-01-08T22:35:20.022350
2020-02-21T11:28:21
2020-02-21T11:28:21
242,123,053
1
0
null
null
null
null
UTF-8
C
false
false
4,026
c
using System; using System.Collections.Generic; using System.Net.Http; using System.Text; using System.Threading.Tasks; using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; // Install Newtonsoft.Json with NuGet using Newtonsoft.Json; namespace TranslationService.Controllers { public class Translate ...
[ "soric.matko@gmail.com" ]
soric.matko@gmail.com
fbec3c5e857850bf0118cb14b7fe1c73b2e1b36a
552c39141dab7cbc0c34245000291a46cdb41495
/lte_enb/src/acceptance/ltepdcp/pjac_snow.h
eee98bbd48cddd6029f34e6aa2fd509f659b2dac
[]
no_license
cmjeong/rashmi_oai_epc
a0d6c19d12b292e4da5d34b409c63e3dec28bd20
6ec1784eb786ab6faa4f7c4f1c76cc23438c5b90
refs/heads/master
2021-04-06T01:48:10.060300
2017-08-10T02:04:34
2017-08-10T02:04:34
null
0
0
null
null
null
null
UTF-8
C
false
false
1,683
h
/********************************************************************20** Name: PDCP - acc test file Type: C Include file Desc: This file contains the acc source File: pjac_snow.h Sid: pjac_snow.h@@/main/TeNB_Main_BR/tenb_main_ccb/1 - Wed Jul 22 18:21:10 2015 Prg:...
[ "sriprasads@gmail.com" ]
sriprasads@gmail.com
e2ce105c281b05eb9090c6b8421c4f4b7635de88
64b008ca7d2f2291e7a0094a3f9f22db48099168
/ios/Pods/Headers/Private/ABI37_0_0EXCamera/ABI37_0_0EXCameraPermissionRequester.h
87b466dc5a7dafdc98d86ff040cbf5450d972366
[ "MIT", "BSD-3-Clause", "Apache-2.0" ]
permissive
kojoYeboah53i/expo
bb971d566cd54750030dc431030a8d3045adff82
75d1b44ed4c4bbd05d7ec109757a017628c43415
refs/heads/master
2021-05-19T04:19:26.747650
2020-03-31T05:05:26
2020-03-31T05:05:26
251,520,515
5
0
NOASSERTION
2020-03-31T06:37:14
2020-03-31T06:37:13
null
UTF-8
C
false
false
115
h
../../../../versioned-react-native/ABI37_0_0/Expo/EXCamera/ABI37_0_0EXCamera/ABI37_0_0EXCameraPermissionRequester.h
[ "noreply@github.com" ]
kojoYeboah53i.noreply@github.com
c36225ebc2edac2f2b5e4b731b76ca57a7540505
a4a158161808c77cdd4dd5a992b93a6e4ca6894c
/Eleição/bully2.c
7ef044ac53434bb24c1de286cd7beca56e963c23
[]
no_license
clmello/dropbox
472b2ef1b80e6ead6f4667861e9257e2ef00b826
90aeaf4d0a82c4f685d14cc68616aeaf82705ec7
refs/heads/master
2020-05-14T22:56:31.522002
2019-07-01T11:20:52
2019-07-01T11:20:52
181,987,400
0
0
null
null
null
null
UTF-8
C
false
false
2,637
c
#include <stdio.h> typedef struct process { int id; int crash; } process; process P[10]; int total, coordinator; int highest() { int max = 0, i, loc; for (i = 1; i <= total; i++) { if (P[i].id > max) { if (P[i].crash == 0) { max = P[i].id; ...
[ "noreply@github.com" ]
clmello.noreply@github.com
d610b4bf834b44f0863b7787871afb1e254d4316
72931935f0f38174597505252de2305a89a0eff4
/sniff/sniffer_eth_ip.c
f4b37b98b23283fb0c98f9e428be66747946c3a1
[]
no_license
saraboju-umaraju/linux_networking_hacks
14523a240cf1b94ddc73c5ee769e09f7bc847c7a
1bf1be1e297500bc3086bb749f620ae8b992d1a4
refs/heads/master
2020-03-31T13:09:08.366139
2018-10-09T12:01:29
2018-10-09T12:01:29
152,243,553
0
1
null
null
null
null
UTF-8
C
false
false
3,985
c
/*propreitary of umaraZ Inc written for GLOBALEDGESOFT p LTD */ #define FAILED -1 #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/ioctl.h> #include <sys/socket.h> #include <netinet/in.h> #include <net/if.h> #include <linux/ip.h> #include <linux/if_packet.h> #inc...
[ "umasraz@gmail.com" ]
umasraz@gmail.com
e9e4124a7c1a9f63a01fde293618de3bf54e9863
ddbae05366c1dedf9e84f314b3b5693336452548
/ex23/main.c
e71a15620bc3fcc9c90f1ead22db423174713f7a
[]
no_license
vholovin/Piscine_reloaded
f45d2bffcdffef1b80940ab12e139957eab9d49f
fffd2a64c6bdf8f725b525297f89898a7ca8e941
refs/heads/master
2021-05-01T11:27:43.002233
2018-02-07T00:59:34
2018-02-07T00:59:34
121,120,610
0
0
null
null
null
null
UTF-8
C
false
false
1,053
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.c :+: :+: :+: ...
[ "vholovin@Vitaliys-Mac.local" ]
vholovin@Vitaliys-Mac.local
0bdb1836c4432e0eb14b23445a8c6f39fae82a1f
9e5d21b08d8c912f098e8f82a7922372ac6d86f3
/GrafosProblemaDoEngarrafamento.c
a2c5311c3b54ff638d13d51d2c6ef962e7d6559f
[ "MIT" ]
permissive
Willianpitter/-Structure-of-Data-and-Algorithms
f3576f9876c83fdb9f9cbbaf0e4198e27905e62a
55f1bf5dec1a541c0c34362bbc76de78e61be546
refs/heads/master
2020-04-08T05:57:04.739699
2018-11-25T22:21:31
2018-11-25T22:21:31
159,080,159
1
0
null
null
null
null
UTF-8
C
false
false
3,815
c
#include <stdio.h> #include <stdlib.h> #include <limits.h> #include <unistd.h> int FilaCount = 1; int ondefila = 0; int *f = NULL,*r = NULL; // Fila global typedef struct Lista{ int valor; int peso; struct Lista *prox; }lista; void InicializaArestas(int arestas,int vertices,lista vet[99999]){ int i=0,a1=0,a2=...
[ "willianpiterh@gmail.com" ]
willianpiterh@gmail.com
1656b117bab459e6aa1aa550dcdd03f6d57174cd
bbcf190b627d38bd0c234ef9fca183d20e08a050
/IR_ColorTestModule/ST/IR_ColorTestModule/BSP/bsp_i2c_3.h
bcf87f27525419eee9610676f98d626c0e4657f0
[]
no_license
zpan5/IR_TEST
46270f997f573630f761b941fc28c9ff0ffc1041
d94b105fefa51d60d1cfff026e24148cebe8559a
refs/heads/master
2023-08-12T04:30:01.302306
2021-09-30T07:51:51
2021-09-30T07:51:51
357,020,033
1
0
null
null
null
null
UTF-8
C
false
false
493
h
#ifndef BSP_I2C_3_H #define BSP_I2C_3_H #include "bsp.h" void I2C_3_Initialization(void); CPU_INT08U I2C_3_Write(CPU_INT08U address, CPU_INT08U *dataP, CPU_INT08U dataLength); CPU_INT08U I2C_3_Read(CPU_INT08U address, CPU_INT08U *dataP, CPU_INT08U dataLength); CPU_INT08U I2C_3_CmdRead(CPU_INT08U address,CPU_INT08U com...
[ "zpan51@163.com" ]
zpan51@163.com
7379a1eab2589c9a5966bb6b0087bb7d0961dbd9
3b4eb535197196f699948b9d6beb9a4fae7623eb
/ADSupport/supportApp/hdf5Src/H5Tbit.c
12d1fd19f1c3e71e07bc086452174418b8d4bec7
[ "MIT", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-llnl", "LicenseRef-scancode-hdf5", "LicenseRef-scancode-hdf4" ]
permissive
ISISComputingGroup/EPICS-areaDetector
23fa0825051e1686749b25def9e14c1fa1cbc579
40ba36a1d804841e6736609a3b996b564188ce37
refs/heads/master
2023-06-08T22:29:18.675011
2022-06-06T12:12:03
2022-06-06T12:12:03
40,836,309
0
0
NOASSERTION
2022-05-19T21:33:53
2015-08-16T19:41:47
C
UTF-8
C
false
false
22,308
c
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * ...
[ "freddie.akeroyd@stfc.ac.uk" ]
freddie.akeroyd@stfc.ac.uk
3085a74cdc330234957aba37c4fcd91b52c4591f
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/misc/sgi-xp/extr_xpc_partition.c_xpc_kmalloc_cacheline_aligned.c
6cd6cc6ec67f9ac77c494ae9b9f6670498310929
[]
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,075
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
06ee8d87ae7a1c7dbd9a210a773e06c946d1e265
11619485bdf46948636e433b55afc8e65b2a7bbe
/박건우/tnwjd.c
9d1c493fe80e9af3a08b9c80779891eccff9d72d
[]
no_license
poorogrammer/ksj_project_gomu
da6123901e0481333f241e7e18d50531f2ce2e30
0538edaa2c02bc8d4fb1c9c3d412bef82ce274ad
refs/heads/master
2022-11-07T19:23:39.082532
2020-06-26T18:20:36
2020-06-26T18:20:36
271,463,448
1
1
null
null
null
null
UHC
C
false
false
431
c
#include <stdio.h> #include <string.h> #include <stdlib.h> #pragma warning(disable : 4996) #define BUFFER_SIZE 256 int main() { FILE* fp; char buffer[BUFFER_SIZE + 1]; if ((fp = fopen("whitelist.txt", "a")) != NULL) { memset(buffer, 0, sizeof(buffer)); //buffer를 0으로 채운다. sc...
[ "noreply@github.com" ]
poorogrammer.noreply@github.com
cb14b136478ea1f44c5aaff1fd78bb6cff463791
740b9bb41ea64307c5f7c85cff818b9190d7a02c
/components/softdevice/s130/headers/ble_ranges.h
d111fb8270e74a5cc3cc0892a0f96d9b9d2fbacd
[]
no_license
thumb2/nrf51sdk12_3
4fefe074ef34b69054613ff8ab3faba18f6aa8d1
d6956d24ae6ada32db9139ca5da4885377003bf8
refs/heads/master
2020-04-26T07:26:49.519306
2018-01-12T02:08:34
2018-01-12T02:08:34
173,394,420
0
1
null
null
null
null
UTF-8
C
false
false
5,234
h
/* * Copyright (c) Nordic Semiconductor ASA * 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 copyright notice, this * ...
[ "johnson@btsmartshield.com" ]
johnson@btsmartshield.com
85316a6952baf94053d12e948a73bcf3aa21493c
985beab07c05b613aa8ac3edbcd0987f89344eaf
/fy4/d/bashan/mazenpc/obj/wolfclaw.c
a74536fdaf040d3e3895377204e69933dc8b4d38
[]
no_license
Yeeler/fy2005
f6b308592c5037f5b5d40c18b748259447b6abe1
cd244d4fed63ba57cd72a4e7119353a29df1f3c0
refs/heads/master
2021-01-06T20:37:29.371119
2017-08-08T07:54:16
2017-08-08T07:54:16
99,530,241
2
1
null
null
null
null
GB18030
C
false
false
421
c
// annie. 07.2003 // dancing_faery@hotmail.com #include <ansi.h> #include <weapon.h> inherit FIST; void create() { set_name(CYN"青狼牙爪"NOR, ({ "wolf claw","claw" }) ); set_weight(4000); if( clonep() ) set_default_object(__FILE__); else { set("unit", "对"); set("long", "一对用青狼之牙做成的爪子。\n"); set("material", "bon...
[ "yeeler@gmail.com" ]
yeeler@gmail.com
7ac0ec846b35da7fea5c970dc325bf55780af7f7
21053072c9d40831d627c7c4f1c67a2652b11bad
/frdmkl25z_driver_examples_lpsci_polling/source/help_functions.c
3166ecf4ca3fe9839a4edc49f88176bb5b9b9c52
[]
no_license
TrcoMi/TPRaIS
500215f0c45fde7ea4b066aad1691d8c906e37ad
def655d92405db7ae7f1fc26b58ca0ffc24c99d9
refs/heads/master
2022-04-06T16:35:39.567177
2020-02-05T08:07:25
2020-02-05T08:07:25
236,746,100
0
0
null
null
null
null
UTF-8
C
false
false
1,995
c
/* * help_functions.c * * Created on: 4. 2. 2020 * Author: mirot */ /** * @file help_functions.c * @brief Subor ktory obsahuje pomocne funkcie * @details Nachadzaju sa tu metody na cakanie, * vypocet kontrolneho suctu a vypisanie dat. */ #include "help_functions.h" /**********...
[ "mirot@172.20.52.26" ]
mirot@172.20.52.26
25de1fc1271c861347270905782caf69f28c6f02
5791d786c0f26fc287ac0fa7b293fe7339e041c2
/Classes/spiceCpp/include/ngspice/modldefs.h
b9f0da3a5572b54ee007cbb222ef009a8a9bf0e3
[]
no_license
fengmm521/myspice
2c2da3e9c250e0a4193d2d999b2eb119c18f0d38
aacf57b4a11a34aa8ed38ee3557f6dc532aabffb
refs/heads/master
2021-01-10T11:26:53.150769
2015-09-27T16:28:59
2015-09-27T16:28:59
43,237,336
3
2
null
null
null
null
UTF-8
C
false
false
1,455
h
/********** Copyright 1991 Regents of the University of California. All rights reserved. Authors : 1991 David Gates **********/ /* Member of CIDER device simulator * Version: 1b1 */ #ifndef ngspice_MODLDEFS_H #define ngspice_MODLDEFS_H /* Data Structures and Definitions for Device Simulation Cards */ typedef str...
[ "fengmm521@gmail.com" ]
fengmm521@gmail.com
e6c9805c7acfc4d0d7f2c0c5c43770636b0d1dd9
bc1f4dabd761832726264375f704e5b937f6dadf
/queue/queue.c
5264b3e0eead761b2e68896758339fe144327413
[]
no_license
rahul-shewale/data-structures-in-c
1ff431ca5106c109c7f68888dee186df8f8d219d
9091a2d5b223484fe23953738b99ec895df2e5b2
refs/heads/master
2022-12-03T17:24:07.951614
2020-08-17T08:23:57
2020-08-17T08:23:57
288,125,995
0
0
null
null
null
null
UTF-8
C
false
false
1,178
c
#include<stdio.h> #define capacity 5 int queue[capacity]; int front = 0, rear = 0; void insert(void); void delete(void); void display(void); void main() { while(1) { int ch; printf("1. Insert the element in the queue\n"); printf("2. Delete the element\n"); printf("3. Display the queue\n"); printf("Enter you...
[ "rahulrajendrashewale@gmail.com" ]
rahulrajendrashewale@gmail.com
ba38fe6ff9ebe772196d31b167ce541d2adcc39a
bd06aa90835d1d275717070c40e9549679a15761
/openmp/Basic/APICalls/omp-pi-calculation.c
5abd5e95759e26eefe00358a5d99baee2a817dc2
[ "MIT" ]
permissive
rarchk/HPCtute
e4b3163a944f5f2a186c91516e0cd210cfc87385
4816b4a8b11200ac7e78bf561558e008bf108b4d
refs/heads/master
2021-01-21T10:29:16.476502
2017-02-28T13:44:10
2017-02-28T13:44:10
83,436,802
0
0
null
null
null
null
UTF-8
C
false
false
4,356
c
/***************************************************************************** Example 2.1 : omp-pi-calculation.c Objective : Write an OpenMP program to compute the value of pi function by numerical integration of a function f(x) = 4/(1+x*x ) between the ...
[ "tau.ronak@gmail.com" ]
tau.ronak@gmail.com
7786dbd1c4972ccca9f09dc02b0dcccf25e21712
e85ce32dfe6acc00318a55b14afaff92d66ae402
/492.c
4dccf59f5f0df184848da73e19811f2889ed34c6
[]
no_license
hemanshu95/programs
eec9bada071a441b0e6428a867518505f739a2ba
21a8ceab0f696aae280b49f26db7f94e0d5d9489
refs/heads/master
2020-05-31T04:18:34.254435
2017-07-15T20:07:20
2017-07-15T20:07:20
38,542,215
0
0
null
null
null
null
UTF-8
C
false
false
361
c
#include<stdio.h> int main() { int n,i,h=0; scanf("%d",&n); for(i=1;;i++) { h=(i*(i+1)*(i+2))/6; if(h>n) { i--; break; } else if(h==n) break; } ...
[ "hemanshu95@gmail.com" ]
hemanshu95@gmail.com
b430b833cc4f2135899ab2797a4d35b5624abd36
8e39acaf52ed7a5661a52d3d0c6466b2b0fd53af
/文件处理/demo/PROTOCOL/command/command.h
b075b1af4a7a8993e0b29445e50b07e5ec15d8ad
[]
no_license
JansZeng/project
2f548f0a59b2bf566ee9ddb488e072bea853810a
8ce369fa7de8c0b1d93facf02ee2de7ab3c7953b
refs/heads/master
2023-02-10T09:00:55.567544
2020-08-29T04:52:02
2020-08-29T04:52:02
null
0
0
null
null
null
null
UTF-8
C
false
false
659
h
/********************************************************************** Description: 声明与命令或具体功能配置相关的全局或局部变量 History: <author> <time> <desc> 闫少伟 2013-12 创建文件 ************************************************************************/ #ifndef _PROTOCOL_CMD_H #define _PROTOCOL_CMD_H #include "../interface/protocol_def...
[ "412037638@qq.com" ]
412037638@qq.com
bc0908ab1fd0003a646d96c3d3ed5f85853df50e
f8b9ceccbc6a5cf32c72ed340e8f76a331c5a536
/3_Implementation/Main.c
afa0c9a8702e50674ad5455388e56922fb89944a
[ "CC0-1.0" ]
permissive
chetan2237/Mini_Project
d822ea77856fcf558b90731435faec5171487a4a
2bf407f7754aa1dfe4b9d7f6ae66dfcb51ce1724
refs/heads/master
2023-04-04T07:23:01.901761
2021-04-16T07:34:11
2021-04-16T07:34:11
356,152,495
0
0
null
null
null
null
UTF-8
C
false
false
5,154
c
#include <stdio.h> #include <stdlib.h> #include <time.h> #define FLUSH fflush(stdin) void beginner( void ); void guess( void ); void boom( void ); void print_final_minefield( void ); void win( void ); void play_again( void ); void game_over( void ); int x, y; int M, N; float diff; int total_mines = 0; int mines = 0...
[ "pidugunagachetan2000@gmail.com" ]
pidugunagachetan2000@gmail.com
745e44c47af5ea2bd287c9f18f76e34edf0f950a
d9ec6c674098637b4573a1913aa26b52954bef09
/src/libhardware/STM32F10X-BOARD/config.h
15f15d8482b46abdd8b1b334239927e349fdaff6
[]
no_license
li1794/CNC-STM32
a4d7c982c2cb59f6394e219f1955bb30cde533de
e88e885363ab9428f256e8ce82e506e86eb5429c
refs/heads/master
2021-01-22T07:06:19.728725
2015-05-10T05:17:10
2015-05-10T05:17:10
35,357,703
0
0
null
2015-05-10T04:57:45
2015-05-10T04:57:43
null
UTF-8
C
false
false
215
h
#ifndef __Config_h #define __Config_h #include "global.h" #include "integer.h" #include "sdcard.h" #include "ff.h" #include "diskio.h" #define TEST_SD_EN #define TEST_FATFS_EN #define PRINTP_EN #endif
[ "x893.00@gmail.com" ]
x893.00@gmail.com
95cd42745a013e5e1816768df48375d9e37f8638
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/636fb57d-83f7-4d65-a6c2-96d2e2793970.c
370b5d835bce43faea5e61eee2620d4e6c81b445
[]
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
571
c
#include <string.h> #include <stdio.h> int main() { int i=4; int j=14; int k; int l; k = 53; l = 64; k = j/j; l = i/j; l = i/j; l = l/j; l = i%j; l = i/j; j = l-j*i; //variables //random /* START VULNERABILITY */ int a; long b[17]; long c[95]; a =...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
4438c44c21d315503cf4502d19c2f96070449ac9
9cfa09ac6739e69fddf81e8984c6e93406d490bd
/Lecture Code/Lecture Code/programs-lec05/prog-05-03.c
e9c002b776178e503ec0ef823884e44dbac60c2f
[]
no_license
hugh-jazz/bigkek
937d37911bbba57a09485ca0974eadf37d168375
8cae837fef2aa8899edad116da07a8e93512665e
refs/heads/master
2022-04-13T06:28:36.667889
2020-04-12T09:45:23
2020-04-12T09:45:23
null
0
0
null
null
null
null
UTF-8
C
false
false
471
c
/* ============================================================================ Name : lecture-05.c Author : mr Version : Copyright : Your copyright notice Description : Hello World in C, Ansi-style ============================================================================ */ #include <stdi...
[ "noreply@github.com" ]
hugh-jazz.noreply@github.com
3487872b8cdda8953db8bc8f6e3eabffa82bfc26
5d26a772aca2213e2c7eca8341e3b12cad4f2388
/1x01 C Fundamentals in Code Blocks/_1x01 C Fundamentals.c
81cb2b5307de0d2cc0ef24ecfb5488c4991ddde9
[]
no_license
JamesPiper/1x01-C-Fundamentals
d24e3d98844d901ea964d8bcd80b59c86a56f602
bfb3a48fd5600d19edc4ebb88a8a920a9bffdd56
refs/heads/master
2021-01-11T21:19:36.246949
2017-01-24T20:52:40
2017-01-24T20:52:40
78,758,669
0
0
null
null
null
null
UTF-8
C
false
false
906
c
///////////////////////////////////////////////////////////////////////////////////// // Project : 1x01 C Fundamentals // Author : James Piper, james@jamespiper.com // Date : 2017.01.12 // File : _1x01 C Fundamentals.c // Description : main() // : Working through coding in C to see ho...
[ "github@jamespiper.com" ]
github@jamespiper.com
5272c7bc855013969f1e161065898439143011aa
4b9f2cccf6d01283266828c32874b53cd1229747
/celciusconv.c
f907cb52227d39b7d067bbaf220a45a801d8b2f5
[]
no_license
slac3dork/SnipL0g
e0733bd4ae9fc4f1628a5f1920abfcd9a87f93c8
ea5002208ac45bd2a83c42c0a97422e611df144a
refs/heads/master
2021-01-18T14:22:47.286282
2009-11-06T22:53:27
2009-11-06T22:53:27
null
0
0
null
null
null
null
UTF-8
C
false
false
1,214
c
/** _________ .__ .____ _______ / _____/ ____ |__|_____ | | \ _ \ ____ \_____ \ / \| \____ \| | / /_\ \ / ___\ / \ | \ | |_> > |__\ \_/ \/ /_/ > /_______ /___| /__| __/|_______ \_____ /\___ / \/ \/ |__| \/ \//_____/ http://sn...
[ "slac3dork@gmail.com" ]
slac3dork@gmail.com
4b04e7b160eec3d8af6d4b00a3f0280460383f38
ac4b8b2dbaca3c65ae9ea793625ca4bea3ec58e5
/include/mac/startup/include/fp/bmc_3f.h
f0a6e7781ada1c01c61f68d9c72d35741a2b25e9
[]
no_license
CPoirier22/kgap_devel
e9bc40b583648f055305340a142a771e2311d9f3
0b0a61d9bf65a77b65856baf141634f1eb4459f2
refs/heads/master
2021-01-25T03:54:19.667988
2015-01-22T21:39:51
2015-01-22T21:39:51
33,325,600
0
0
null
null
null
null
UTF-8
C
false
false
2,339
h
/************************************************************************* * Project : MARS * Module : BMC_3F.h * Reference : * Type : ...
[ "cpoirier@e8bcff5b-88ab-604a-bd06-39f22b88f4f2" ]
cpoirier@e8bcff5b-88ab-604a-bd06-39f22b88f4f2
c54d4d2984fcf94a45e77368f767036758fa333c
54259d9ba6712b7c5a5a40e2a3a7fe1f232f63a8
/C_08/ex05/ft_show_tab.c
e8e895707a494206a6a31f8641f347b93493b77c
[]
no_license
taeng42/42seoul
7cb6589e9762f83b553e90200877b93bf9b84d22
4701470faaff9696c4d54b001293b146e6d463a9
refs/heads/master
2023-03-14T20:56:02.273786
2021-03-18T13:34:12
2021-03-18T13:34:12
null
0
0
null
null
null
null
UTF-8
C
false
false
1,387
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_show_tab.c :+: :+: :+: ...
[ "schae@c8r4s10.42seoul.kr" ]
schae@c8r4s10.42seoul.kr
4b958ef03839fa44174239bab4bd0f813efb25f1
7c6f443f992efd65f4ce96fc52c5323e1417722f
/users/pmc_utils/dallas_drv/pbrc_protocol.c
c6d9deb82ccbfc02821ff4bfbbb1038c1b994e4a
[]
no_license
frederic/rtl819x-toolchain
692892b0123feee8d030f0dd17bb500be9ed35a7
5c9be5d943318fdb4d048ae22078129594eb5a10
refs/heads/master
2021-01-16T19:18:23.267793
2014-03-24T20:39:20
2014-03-24T20:39:20
11,039,776
16
16
null
2020-03-08T12:11:12
2013-06-28T22:28:25
C
UTF-8
C
false
false
36,128
c
/* #******************************************************************************* # Copyright (C) 2006 PMC-Sierra Inc. All Rights Reserved. #------------------------------------------------------------------------------- # This software embodies materials and concepts which are proprietary and # confidential to PMC-...
[ "user@debian" ]
user@debian
ad8166a604c7ee073c5d1d6d9641f5c46be64131
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/ui/gfx/ipc/gfx_param_traits_macros.h
763431eaaf4738e683db2404311b509188eb30e8
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C
false
false
2,297
h
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Singly or multiply-included shared traits file depending upon circumstances. // This allows the use of IPC serialization macros in more than one IPC me...
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
830a370a6aa08412eeebe57d44721b05086e2923
3e2c6653d2693319c2ac5f8a893c08d7442d4059
/common/src/sna/emgd_sna/src/intel_driver.h
ed9e4464ad3142ea5b02396961b80cc25d7ecbc0
[ "HPND-sell-variant", "MIT" ]
permissive
jameshilliard/Intel_BYT_SNA64_EMGD_V37.40.25_RC_2015-06-02_3900
83c1b519beb16089758956e711dc27077ce88d05
9a287877ac122727ddd58e9dc6aedd801ba31fc8
refs/heads/master
2020-06-10T06:23:43.669061
2019-06-25T01:13:07
2019-06-25T01:13:07
193,607,004
0
0
null
null
null
null
UTF-8
C
false
false
4,457
h
#ifndef INTEL_DRIVER_H #define INTEL_DRIVER_H #define INTEL_VERSION 4000 #define INTEL_NAME "emgd" #define INTEL_DRIVER_NAME "emgd" #define INTEL_VERSION_MAJOR PACKAGE_VERSION_MAJOR #define INTEL_VERSION_MINOR PACKAGE_VERSION_MINOR #define INTEL_VERSION_PATCH PACKAGE_VERSION_PATCHLEVEL #define PCI_CHIP_I810 0x7121 ...
[ "james.hilliard1@gmail.com" ]
james.hilliard1@gmail.com
f44268083d651e08f318f97ac6c698a828a036e7
4350a08ab47379b204b33c23d75a1a5193ac6026
/SMEMO/strInput.c
2deedab3e929b13b10dbfc58d0a117728012e74b
[]
no_license
PSP-Archive/Freeze-Owata--1
da13b8f03604e1e986c54b8eae21036e6a57bc59
4eb170a71e29a2b8b4e2f6da303906f27ec902d3
refs/heads/main
2023-03-14T07:38:17.705123
2021-03-09T21:16:32
2021-03-09T21:16:32
346,146,779
0
0
null
null
null
null
SHIFT_JIS
C
false
false
14,142
c
//============================================================== // 文字列入力関連 // STEAR 2009 //-------------------------------------------------------------- // 汎用1ライン文字列入力。 //-------------------------------------------------------------- #include <pspuser.h> #include <pspctrl.h> #include <pspdisplay.h> #include <stdio.h...
[ "pierluigiortenzi@gmail.com" ]
pierluigiortenzi@gmail.com
e51ed19ffc70b9e7226c3c5d236d3bfc3cd401f2
0489e9fa78efe4c4ef3232b3f5559baed7cf0d41
/gen3/src/gen3.c
dc93f429b23b5a24c81c097c4ba1dc4b0d96b687
[]
no_license
r5k0y2k5k9r6/Language-processing-programming
f8f83cb8bafb13938a13ce764ccebb40499eef92
d0dfb0e9bb55f5aaa466c1ea164768b20470b2ba
refs/heads/master
2022-05-27T09:20:01.085962
2020-04-19T09:27:57
2020-04-19T09:27:57
256,954,210
0
0
null
null
null
null
UTF-8
C
false
false
705
c
/* ============================================================================ Name : gen3.c Author : Rimi Version : Copyright : Your copyright notice Description : Hello World in C, Ansi-style ============================================================================ */ #include "scan.h" ...
[ "noreply@github.com" ]
r5k0y2k5k9r6.noreply@github.com
cafd1d5ef149d47864c1dbc0a08096ea16c38a2e
4798aa30408e1821af71837a5b7d3c3821e9c503
/packages/cJSON/cJSON.c
fc6ff8334f8e6d30c52b15fdbccef5623ba7b9c3
[ "Apache-2.0", "MIT" ]
permissive
FTarpa/lightcube
bbf2beebe4bfc4fc0c42b248a4fc0cb95de1f658
ac49c480c45c4106cba46a93fd4ae09969db5a1e
refs/heads/master
2022-11-21T09:41:20.053141
2020-07-12T13:31:27
2020-07-12T13:31:27
null
0
0
null
null
null
null
UTF-8
C
false
false
28,685
c
/* Copyright (c) 2009 Dave Gamble 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 the rights to use, copy, modify, merge, publish,...
[ "1115451437@qq.com" ]
1115451437@qq.com
97ebad559d107998a6f13eb72da25b5791708fe1
c1fca0479584a5f2e20267aac862979a38937084
/Firmware/Vinco/src/Ethernet/Src/ethernet_server.c
e099d840724a94a6c448f4a28eea780f9585ff7e
[]
no_license
jetacpp/vinculum-ii-toolchain
52bcdccb8fcdeeb21229808ca92964a9dfc2de71
f54b5c1ef46b0ebdf6f8335de10ae11f29f5035d
refs/heads/master
2020-09-16T16:50:53.890149
2019-11-25T01:04:14
2019-11-25T01:04:14
223,834,752
0
0
null
null
null
null
WINDOWS-1252
C
false
false
5,727
c
/* ** ethernet_server.c ** ** Copyright © 2011 Future Technology Devices International Limited ** ** Source file containing the definitions of the TCP Server APIs ** ** Author: FTDI ** Project: Vinco ** Module: Vinco ** Requires: ** Comments: ** ** History: ** 1 – Initial version ** */ #include "eth...
[ "bdinh@omega.com" ]
bdinh@omega.com
c82078b811708fb14924686c882259b8651aaac5
c4138ba4d570e42690993d43bb726edc64089b57
/reglookuplib/include/void_stack.h
1ae575eee715852c3d221674557a9e0da1c3d041
[]
no_license
coriolis/vminspection
2fb635d1acb00de95083c27cd4ef707a64eeb54f
bd697de55da23a4746ea9a64561bb7d79b9382bc
refs/heads/master
2020-06-02T09:19:38.014713
2011-12-13T09:55:16
2011-12-13T09:55:16
2,923,323
0
2
null
null
null
null
UTF-8
C
false
false
4,962
h
/* * Copyright (C) 2005,2007 Timothy D. Morgan * * 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; version 2 of the License. * * This program is distributed in the hope that it will be use...
[ "rohan.nandode@coriolis.co.in" ]
rohan.nandode@coriolis.co.in
f525c4bcf47ebe5540b319ad86ed6baeb03431aa
10a3e2dfb10f2dcb15a4ec5f1312a83d7c69aa88
/idr-mgt-shared-libs/coap/rest-engine/rest-engine.c
5512ce445861e83c16ae3813777bc8e83e7830c9
[ "Apache-2.0" ]
permissive
intel/intel-device-resource-mgt-lib
981d592bded509d1a79ec22c823280d4ceee3e44
a5aeb1238b26c1af55cf3a82787ed347dff1fb86
refs/heads/master
2023-05-27T13:34:09.991898
2022-08-25T11:31:21
2022-08-25T11:31:21
118,522,873
2
16
NOASSERTION
2023-04-07T10:28:29
2018-01-22T22:16:29
C
UTF-8
C
false
false
16,988
c
/* * Copyright (c) 2013, Institute for Pervasive Computing, ETH Zurich * 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 copyright ...
[ "xin.wang@intel.com" ]
xin.wang@intel.com
350ccf5342eb4098dba071c6ed78beba1c6c25ae
199decbc54c21b18d7b91f75979fe82726b92424
/Lab5/src/mu-mips.c
2b7a84058c82784cc0e390eb45f400716d20ba40
[]
no_license
jschulz97/4270
5f572eba75d7b6044ad23ac6f494895a2b452162
2d987ff074436c948ba6f4847c651b8bdf68ffdf
refs/heads/master
2020-07-12T05:02:59.432653
2019-12-02T04:46:37
2019-12-02T04:46:37
204,725,725
0
0
null
null
null
null
UTF-8
C
false
false
41,326
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> #include <assert.h> #include "mu-mips.h" /***************************************************************/ /* Print out a list of commands available */ /*********************...
[ "jeffschulz7@gmail.com" ]
jeffschulz7@gmail.com
54e8ca28969932685d4910c73cf0714a9dec9480
0f39cd1b19cada1507c9a37169b51b13f7dedb3d
/peripherals/c/accel.c
dd008c9d1dcc2b0932175c9a6cb9ce4d143df233
[]
no_license
psinha25/football-stars
94c0db30a699453bba9695e9eb4be4032a6dc416
2571340d1fa625e7a9f5e29696a46dcba5d674e2
refs/heads/master
2023-02-04T05:45:55.104527
2020-12-26T18:25:44
2020-12-26T18:25:44
null
0
0
null
null
null
null
UTF-8
C
false
false
4,312
c
#include "accel.h" extern void spiTx(uint32_t base, uint8_t *tx_data, int size, uint8_t *rx_data); extern bool spiVerifyBaseAddr(uint32_t base); //***************************************************************************** // Manually sets the SPI chip select line low //************************************...
[ "sinhaprasoon@gmail.com" ]
sinhaprasoon@gmail.com
5b84942851ad977ec4d6e6ef4ef671c4d2d2b7f2
501dfd8afa6b97db1ce167f6de353898b25f58a7
/DSP_Inzynierka/include/csl_dat.h
7fa38dd5f053ed8589895837dc1a3e4c04a95575
[]
no_license
hermeszhang/MulltiEffectDSP
98f00e2f895d2f5244132356e19335f3879270cd
13f6aca25c7e31998899ef0f3424725731ebf44e
refs/heads/master
2021-06-17T02:58:38.277368
2017-05-24T06:46:26
2017-05-24T06:46:26
null
0
0
null
null
null
null
UTF-8
C
false
false
18,030
h
/* ============================================================================ * Copyright (c) 2008-2012 Texas Instruments Incorporated. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistribut...
[ "lukaszpindor1@gmail.com" ]
lukaszpindor1@gmail.com
bd015975a92a7caf0663eedc272d3e146b8d9810
87841f354df60cd9f81ff558b56bd0b48aa33c19
/CODE/Inc/ffconf.h
6c0d00f15e3330d2e3ccf675f8a9c4193440f316
[]
no_license
leazer/LSM6DSOX_Ctrl
32bb742783bc8588965de557d6c6ba9250c45510
a7aa9349e13e09f117bbafe44866e0519aa5a21a
refs/heads/master
2022-11-13T12:47:11.056350
2020-07-05T14:03:50
2020-07-05T14:03:50
277,145,793
3
0
null
null
null
null
UTF-8
C
false
false
12,791
h
/* USER CODE BEGIN Header */ /** ****************************************************************************** * FatFs - FAT file system module configuration file R0.11 (C)ChaN, 2015 ****************************************************************************** * @attention * * <h2><center>&copy; Copyrig...
[ "zealerlu@foxmail.com" ]
zealerlu@foxmail.com
6057c83932cf4c8eed943354e1e2d0e11ea07376
22fb425b9788ade0d5fce938ca7d0c1c61b9e071
/sort/merge_sort.c
1d32f434b3cc6913d98bb2801e73ba225c50212c
[]
no_license
XDCQ/some_algorithms
fe261dedc83a3e47d09362e36bf32ffb3148e7cc
4ea26817885415ccf7a6faf2b3d6463c4b9f626b
refs/heads/master
2021-01-22T21:07:16.247468
2017-03-19T15:38:18
2017-03-19T15:38:18
85,393,122
0
0
null
null
null
null
UTF-8
C
false
false
991
c
/* 归并排序,时间复杂度O(nlogn),空间复杂度O(n),稳定的排序 */ #include <stdio.h> #include <stdlib.h> void merge(int* arr,int arr1_start,int arr1_end,int arr2_start,int arr2_end) { int len = arr2_end - arr1_start +1; int* temp = (int*)malloc(len*4); int i = arr1_start; int j = arr2_start; int k = 0; while(i != arr1_end+1 && j != arr...
[ "xiadongchunqiu@wondersgroup.com" ]
xiadongchunqiu@wondersgroup.com
3ccb5be97f9e2bbe5b8b1d624e1422114e44de7c
4c32b087882675696f480fee695cc3ce78c1f200
/Ravel 2.0 ƒ/RavelMAIL 2.0 ƒ/Headers ƒ/pmain.h
39e6d50f1aa2f33ac8cf06c1eb79822315a457b0
[ "MIT" ]
permissive
mcyril/ravel-ftn
bded7f0b253c84d9d8cbace3cc7ee55ace8575b5
f509451b98f0846519bca9583a59c4c00406bf17
refs/heads/master
2021-01-10T07:32:34.613240
2015-11-30T06:53:54
2015-11-30T06:53:54
46,906,263
0
0
null
null
null
null
UTF-8
C
false
false
559
h
void InitToolbox (void); void putMessage (short, StringPtr); void newMessage (short, char *msg, ...); void drawProgressBar (short line, long pos, long total); void drawProgressCircle (short line, long pos, long total); Boolean CheckCancel (void); void DoEvent (EventRecord *); void Loop (void); void StartAll (void); ...
[ "none@none" ]
none@none
b8f6954e4be5614167efac1c67f2744988bf8707
2b5fc6aef5477b7bdb362abebc80af205806f07e
/src/src/vmm/vdma.h
805e4a0f49a21cdc8333d30c732aee7a286079e3
[]
no_license
vmm386/vmm386
7123c084a3ea454e62858b90c74854c095e4e266
20969e782ce06dcb70c3817618f396f205e95fa6
refs/heads/master
2016-08-07T15:31:05.584855
1995-05-10T14:49:47
2015-04-04T13:52:00
33,407,096
2
1
null
null
null
null
UTF-8
C
false
false
1,821
h
/* vdma.h -- Definitions for the virtual DMA. */ #ifndef __VMM_VDMA_H #define __VMM_VDMA_H #include <vmm/types.h> #include <vmm/module.h> #include <vmm/vm.h> #define CHAN0_ADDR 0 #define CHAN0_COUNT 1 #define CHAN1_ADDR 2 #define CHAN1_COUNT 3 #define CHAN2_ADDR 4 #define CHAN2_COUNT 5 #define CHAN3_ADDR 6 #define C...
[ "chrisy@flirble.org" ]
chrisy@flirble.org
74cdf7cacb755aef69da3baa277ce0236890816c
ab8dc30c5ba54ea299425c685bafecd5815f6636
/tests/api/test-pcall-prop.c
9884cfd06c307256cc87f7ff92eaff379f90df6b
[ "MIT" ]
permissive
jasonkajita/duktape
a8e2c49702b8fc7fea2239d186b03152fdd0f198
ac38323a0ddab4c37cc2264400992ff50d55b44f
refs/heads/master
2020-12-26T03:57:38.034070
2016-01-05T20:41:50
2016-01-05T20:41:50
33,104,853
0
1
NOASSERTION
2020-08-14T20:48:48
2015-03-30T05:26:06
JavaScript
UTF-8
C
false
false
5,738
c
/*=== *** test_1 (duk_safe_call) me rc=0, result='21' ==> rc=0, result='undefined' *** test_2 (duk_safe_call) object 123 rc=0, result='21' ==> rc=0, result='undefined' *** test_3 (duk_safe_call) number 123 rc=0, result='21' ==> rc=0, result='undefined' *** test_4 (duk_safe_call) rc=1, result='Error: my error' ==> rc=0,...
[ "sami.vaarala@iki.fi" ]
sami.vaarala@iki.fi
789703f2f0115c9391058af11d6b329544df58dd
fefb1a9e7a0ee4694d48d7ce42ca146a4cdbfef9
/modules/sysfs/sysfs_file.c
1f75b47763ac9109cbd191bd0418763842eafd4d
[]
no_license
PandaZ3D/kern-dev
fc0e0472996feef181ff9877816cb995fea53ed7
d36a1b75d83c7569b101559e5a03986c7153edfb
refs/heads/master
2020-03-22T23:47:34.016217
2018-08-16T18:42:33
2018-08-16T18:42:33
140,828,995
0
0
null
null
null
null
UTF-8
C
false
false
2,133
c
/* * Allen Aboytes * 7/26/2018 * * sysfs_file.c - creates a directory and file in /sys * */ /* standard headers for kernel modules */ #include <linux/init.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/sysfs.h> #define NAME "newfile" /* file name */ #define PERM 0444 /* file per...
[ "aaboytes@ucsc.edu" ]
aaboytes@ucsc.edu
3f51bf7d0bfb854983636af424f4d6bbe83bbd5b
73ff5e8e30a9fe37cfd38a4a97a3fa8a3f8b2be2
/fs_samples/fs_client.c
a3af48eec019171df7010a05f42d8b5e8c217769
[]
no_license
masroorhasan/DistributedFileSystem
64ac06419e29a47ba402b44c1a54e5842e699ba0
ae54348b025db0a050d7b1d2f2b4b04c231fd0f5
refs/heads/master
2021-04-09T17:12:13.556581
2014-11-20T05:21:39
2014-11-20T05:21:39
20,790,092
1
0
null
2014-07-12T04:32:03
2014-06-13T02:47:37
C
UTF-8
C
false
false
2,060
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "ece454_fs.h" void printBuf(char *buf, int size) { /* Should match the output from od -x */ int i; for(i = 0; i < size; ) { if(i%16 == 0) { printf("%08o ", i); } int j; for(j = 0; j < 16;) { int k; for(k = 0; k < 2; k+...
[ "sharpsw@gmail.com" ]
sharpsw@gmail.com
c4e16f988fe3a3ea0f006317ec8a5c30e8074196
f23e1e0fb37c40d524a831cf2f20feecfe1bb5c3
/Test Practice/_Lab Test 2 Practice/SQ_1/main.c
f33cafcc910f7d271487af0337749cada8caf6bc
[]
no_license
xinqingc/Data_Structures
fd61757fcbc4a90e9edd6a6e4d398733d392c28a
1b658024a5be2690dc1a66851f617d81076cebc8
refs/heads/master
2021-09-18T15:35:42.148563
2018-07-16T16:58:12
2018-07-16T16:58:12
null
0
0
null
null
null
null
UTF-8
C
false
false
6,295
c
////////////////////////////////////////////////////////////////////////////////// /* CE1007/CZ1007 Data Structures Lab Test: Section C - Stack and Queue Questions Purpose: Implementing the required functions for Question 1 */ ////////////////////////////////////////////////////////////////////////////////// ...
[ "xinqing3196@ymail.com" ]
xinqing3196@ymail.com
4f10676722344cafb423e281a16b83d97394c7e5
5c1675018e59703da163dde92b5bbcee191e5a91
/10. Haffman/Source/main.c
0873b242b45b2dd5a0a5a5a0e8dbd4a5eb774c8a
[]
no_license
Evgenius2020/C-Programming-Labs
840bec20f7663263be7848d57463d2cec3848fca
1c8ab77f7ef10bc06ac2c0d7c58f2bef0003a9a9
refs/heads/master
2021-06-16T17:48:08.089268
2017-06-02T14:55:17
2017-06-02T15:26:11
85,453,768
3
0
null
null
null
null
UTF-8
C
false
false
900
c
#include <stdio.h> #include <string.h> #include <stdlib.h> #include "Encoding.h" #include "Decoding.h" char* makeFileName(int testNumber) { char buff[8]; char* filename = (char*)calloc(25, sizeof(char)); strcat(filename, "test/"); strcat(filename, itoa(testNumber, buff, 10)); strcat(filename, ".txt"); return fil...
[ "spleen47@mail.ru" ]
spleen47@mail.ru
01f1ff0be27263edc27e04c36149b4a53474eea4
2de558c3de4a80b8094ad1b6ffab2cf0d6da871a
/libft/src/ft_strmap.c
4954184bbf158daaed4b6356c99e7552dfaf8dec
[]
no_license
fabiogelbcke/malloc
54f4769d0e2da7947958c6cde86bc753916b59db
349ea848772036ae80f91e1b3d05f229e6ffe600
refs/heads/master
2020-03-12T03:23:40.502920
2018-04-26T15:40:29
2018-04-26T15:40:29
130,423,489
0
0
null
null
null
null
UTF-8
C
false
false
1,083
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strmap.c :+: :+: :+: ...
[ "fabio.gelbcke@gmail.com" ]
fabio.gelbcke@gmail.com
886a55f187bb1a3e60612e531ea9e0a9ea00b577
934ad498d3f20d8d5de85fc8d54df40b5bd9e1eb
/textures.h
da2cc2d92d4b2e262320dc903d4e77d0859f67d1
[]
no_license
rspencer01/Project-Magrathea
2003354d1d271e30d0201ae66978ca23e8b2b23f
edc24ca55e19445bb09b9ff274d1bbfa3b22656d
refs/heads/master
2020-12-24T18:12:34.380901
2013-08-21T14:35:32
2013-08-21T14:35:32
null
0
0
null
null
null
null
UTF-8
C
false
false
227
h
#ifndef TEXTURES_H #define TEXTURES_H #include <GL/glut.h> GLuint LoadTextureFromData(unsigned char*,int,int); GLuint LoadAlphaTextureFromData(unsigned char*,int,int); GLuint LoadTextureFromFile(const char*,int,int); #endif
[ "robert.spencer94@gmail.com" ]
robert.spencer94@gmail.com
6341edc534c5aa9a5361b60a5bdda02652f7d094
9e0a657809cff059c356dc66c3fe154959429760
/qemu_include/simics/notifier.h
3a40923e800645661b950bd8be8ac5314f009a93
[]
no_license
Digiproto/dmlc
3bdd1175e0cfc09210996af04023993940398725
fc0344aab97d0c891a91c40698d986f86644d8ed
refs/heads/master
2021-04-16T04:03:50.008209
2015-05-20T10:23:29
2019-11-19T08:13:10
249,326,322
0
0
null
null
null
null
UTF-8
C
false
false
1,102
h
/* * notifier.h: * * Copyright (C) 2013 alloc <alloc.young@gmail.com> * Skyeye Develop Group, for help please send mail to * <skyeye-developer@lists.gro.clinux.org> * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published b...
[ "lirui@digiproto.com" ]
lirui@digiproto.com
1c14016f23330f6c09518ec0256a437608bf95f9
aeb2d28aa2a9ce281e0ec50c64fb7cf24a8b18e6
/accapi/nm/app/firewall/ws_firewall.h
d9a173a3de11fc63214418fcc1e004e914cfc8ea
[]
no_license
kkcloudy/dameongroup_v0.1
2767df096e3f5ac27437c9a2589e55c51aafd91e
92e93607c3ad3e3e9818c86131b9a5d727c61b6a
refs/heads/master
2021-05-30T05:53:44.202801
2015-10-27T02:07:25
2015-10-27T02:07:25
48,022,080
0
1
null
null
null
null
GB18030
C
false
false
4,863
h
/******************************************************************************* Copyright (C) Autelan Technology This software file is owned and distributed by Autelan Technology ******************************************************************************** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND...
[ "sush@autelan.com" ]
sush@autelan.com
92ef413ee7602d5ba1a240053c7001ffcd966ab8
1336fb0de7c8678ecc1b25910c55326eed93a0a6
/practicas/p2/e5/paralelo-interseccion.c
2c1e0ac7a0fc8caebc6142be331fb66b271e619c
[]
no_license
Pastorsin/sistemas-paralelos
16ea64fe15ab41b4f0f04f5aba5aa0ba2e9c420e
c274dd255fa770dd2380bd4ac6681bcdffd04d0a
refs/heads/master
2022-09-25T17:41:23.007562
2020-06-06T21:08:29
2020-06-06T21:08:29
250,267,692
0
0
null
null
null
null
UTF-8
C
false
false
2,115
c
#include<stdio.h> #include<stdlib.h> // Cantidad de Threads int T=4; struct set { int* elements; int size; }; // Conjuntos struct set AB, A, B; // Cardinalidad de los conjuntos A y B int A_N=131072; int B_N=131072; pthread_mutex_t ab_mutex; //Para calcular tiempo double dwalltime(){ double sec; struct tim...
[ "andressmilla@gmail.com" ]
andressmilla@gmail.com
70926b1093a6c31c0d1051a93f3a2b84451edbbf
74394d7d843939c3e3805c5c7c7d1bd94278e16f
/RBPI/home/zbam/shairport-sync-master/shairport.c
58c1dc546e3b23e002b281f686d82c0e8149fdf8
[ "MIT", "FSFAP" ]
permissive
chatmurai/mpdradio
b1a8e7977b189855f672938ea5b33d79038362dd
4c3dbf407d07211157db1f73df30545df1af1084
refs/heads/master
2023-07-23T10:41:08.673331
2016-10-22T20:40:28
2016-10-22T20:40:28
null
0
0
null
null
null
null
UTF-8
C
false
false
41,237
c
/* * Shairport, an Apple Airplay receiver * Copyright (c) James Laird 2013 * All rights reserved. * Modifications (c) Mike Brady 2014--2016 * * 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 So...
[ "hello@zb.am" ]
hello@zb.am
f93f1430d5be709cadf2282c9adca4cf37df3372
fc987ace8516d4d5dfcb5444ed7cb905008c6147
/third_party/cygwin/lib/perl5/5.10/i686-cygwin/CORE/keywords.h
b2e996db8868b32cfc2ae70be6feaf76fc2bdc14
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "BSD-3-Clause", "GPL-2.0-only", "LicenseRef-scancode-cygwin-exception-2.0" ]
permissive
nfschina/nfs-browser
3c366cedbdbe995739717d9f61e451bcf7b565ce
b6670ba13beb8ab57003f3ba2c755dc368de3967
refs/heads/master
2022-10-28T01:18:08.229807
2020-09-07T11:45:28
2020-09-07T11:45:28
145,939,440
2
4
BSD-3-Clause
2022-10-13T14:59:54
2018-08-24T03:47:46
null
UTF-8
C
false
false
6,428
h
/* -*- buffer-read-only: t -*- * * keywords.h * * Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2005, * 2006, 2007, by Larry Wall and others * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. ...
[ "hukun@cpu-os.ac.cn" ]
hukun@cpu-os.ac.cn
913105532b2e856d2a4f6bf323a885396b801825
948f4e13af6b3014582909cc6d762606f2a43365
/testcases/juliet_test_suite/testcases/CWE122_Heap_Based_Buffer_Overflow/s10/CWE122_Heap_Based_Buffer_Overflow__c_dest_char_cpy_32.c
89739f96b6cd1131eff7df7f0accf14fad294b6a
[]
no_license
junxzm1990/ASAN--
0056a341b8537142e10373c8417f27d7825ad89b
ca96e46422407a55bed4aa551a6ad28ec1eeef4e
refs/heads/master
2022-08-02T15:38:56.286555
2022-06-16T22:19:54
2022-06-16T22:19:54
408,238,453
74
13
null
2022-06-16T22:19:55
2021-09-19T21:14:59
null
UTF-8
C
false
false
3,381
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE122_Heap_Based_Buffer_Overflow__c_dest_char_cpy_32.c Label Definition File: CWE122_Heap_Based_Buffer_Overflow__c_dest.label.xml Template File: sources-sink-32.tmpl.c */ /* * @description * CWE: 122 Heap Based Buffer Overflow * BadSource: Allocate using malloc...
[ "yzhang0701@gmail.com" ]
yzhang0701@gmail.com
10bd5d2a2a69be817f822ae24eb639fef6153f2d
82914b8757378ea735e6abdb0b0ec822fd6fe00a
/TP4/compilSplit/main.c
10cee0c0b4d90c8b10d62ff9664f4fa6edd04740
[]
no_license
lvlup456/TP-C
5a563e6a6065cbb06e17bd5bb2ad9d58e56426b0
c1e8f00963f8ef29e4f3a611d9409fe873941a64
refs/heads/master
2020-09-23T02:27:09.887205
2019-12-21T17:45:11
2019-12-21T17:45:11
225,378,314
1
0
null
null
null
null
UTF-8
C
false
false
174
c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> int main(){ float pi = calculePiJohnWallis(1000); printf("%f\n",pi); return 0; }
[ "durandthom@eisti.eu" ]
durandthom@eisti.eu
d55dcd86a0841e1aa0e2c57af5dde0335fb5491f
c09a876de236f1b73bd72f624c3350dbd3155af7
/basrcpd/src/srcp-ga.c
a30f3dbb8bf95a302f0ec0526598c3a7ec2a6f85
[]
no_license
mah4913/railroad
f16799e6c5cafee630321bba4046af7337318b9d
829cc9f3d5fd6e1b6386c5da5d1d40164c8137c4
refs/heads/master
2020-03-27T19:50:15.628450
2018-09-01T16:05:47
2018-09-01T16:05:47
null
0
0
null
null
null
null
UTF-8
C
false
false
11,728
c
/* $Id: srcp-ga.c 1739 2016-04-22 20:42:26Z gscholz $ */ /* * This software is published under the restrictions of the * GNU License Version2 * */ #include <stdlib.h> #include <string.h> #include <stdio.h> #include "config-srcpd.h" #include "srcp-session.h" #include "srcp-ga.h" #include "srcp-error.h" #include "s...
[ "info@gerhard-bertelsmann.de" ]
info@gerhard-bertelsmann.de
61e7df7f9d1e6a12c025416d488dbd570bbf2da9
c40e0367b54a158c2af4c7862bc4f9e2be9e7935
/stupid/posix/stpasm/LINK.H
f54b423d68478ce14d280e9943eecf5743da1872
[]
no_license
Kizarm/Stupid
f0623cb28e07c3b372c5a245f3db3c51d6853d4c
880ca5b557918a051104a0727c450b6bbc44f3dc
refs/heads/master
2022-09-12T21:15:56.912857
2022-08-20T13:08:38
2022-08-20T13:08:38
74,561,609
0
0
null
null
null
null
UTF-8
C
false
false
236
h
struct _FileBuf { char *Name; long Loc, Files, Segs, Gaps, Syms, Exps, Relocs; char **File; Segment Seg; Gap G; Symbol *Sym; }; typedef struct _FileBuf *FileBuf; extern FileBuf FTab; extern int Fs; extern void Link(char *Hex);
[ "mrazik@volny.cz" ]
mrazik@volny.cz
98c1e41af919e38412c88eac1f8a2112f4deb592
08b157c6b1ac8232c682f0b9ae43ddc54a7236bf
/MP2/userapp.h
36b785cae75bbd5ddef8b5cf610cf556ed3d1be6
[]
no_license
KeyeZhang/CS423-2017SP
034997bc9c59de01e348a1c41e3f35b98d9c7657
d6fc44b4eba8d56d02741b9240dc6117d2ce3875
refs/heads/master
2020-03-13T10:09:37.981597
2017-04-24T01:06:03
2017-04-24T01:06:03
131,078,212
0
1
null
null
null
null
UTF-8
C
false
false
160
h
#include <unistd.h> #include <sys/stat.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <sys/time.h> #include <string.h>
[ "dlei5@sp17-cs423-10.cs.illinois.edu" ]
dlei5@sp17-cs423-10.cs.illinois.edu
94a9d591657dfd18e0795534175015eb4ff46a3f
5c255f911786e984286b1f7a4e6091a68419d049
/vulnerable_code/aa449e81-a961-4527-9a2f-7b1e0a696da2.c
f9f4508cb83463e585bdd455b5ed891938337f0e
[]
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
579
c
#include <string.h> #include <stdio.h> int main() { int i=0; int j=12; int k; int l; k = 53; l = 64; k = i/j; l = i%j; l = i+j; j = l-j*i; //variables //random /* START VULNERABILITY */ int a; char b[89]; char c[86]; a = 0; while (b[( a - 1 )] != 0) { ...
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
e169a78b8fc79b52a601f358f119e9d612bd8cf4
2466abf4feac04140f0d36c6292c099727160337
/src/options.h
8568aba8e925ad728c52a45472d2953d07af0a80
[]
no_license
Mountagha/mcc
954f6d1db1c457f23a01af065b41b9b54db471c8
d19b78567ed959faa7d72bdd7df653a6661fa55c
refs/heads/master
2023-01-24T15:26:07.393077
2020-12-01T11:07:37
2020-12-01T11:07:37
null
0
0
null
null
null
null
UTF-8
C
false
false
2,217
h
/** Copyright (c) 2012, Michael Malone 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 conditions and t...
[ "michael.j.b.malone@gmail.com" ]
michael.j.b.malone@gmail.com
7781a3b34b8f50edfa369b57003e05b89432f6c8
407985531beda2e8063271a1ea6ca6c69ce88b26
/app/main.c
4944fdd1c463330b20c2279b75ef0998b45f651e
[]
no_license
hoyen2017SummerProgram/STM32F030R8_IQS
9a94ec5f523257229be529470ae790b271cd5738
83e330e3cff401b8f4e8d8d2090524b28a4b5bbe
refs/heads/master
2021-07-15T12:13:21.083334
2017-10-18T06:05:59
2017-10-18T06:05:59
105,973,896
1
0
null
null
null
null
UTF-8
C
false
false
2,232
c
#include "stm32f0xx.h" #include "hwcfg.h" #include "stdio.h" #include "IQS316_driver.h" #ifdef __GNUC__ /* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf set to 'Yes') calls __io_putchar() */ #define PUTCHAR_PROTOTYPE int __io_putchar(int ch) #else #define PUTCHAR_PROTOTYPE in...
[ "rogerlin@hoyentech.com" ]
rogerlin@hoyentech.com
44adbda36d97d82dfceb1649ed28eab72bbe973f
83214753e9183327e98af0e6768e9be5385e5282
/d/beijing/kedian3.c
dfa6952e68e39b71a9961fcbd3ab7d2d53b249cd
[]
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
623
c
inherit ROOM; void create() { set("short", "东客房"); set("long", @LONG 一进门,只见六个喇嘛手持戒刀,围着一白衣女尼拼命砍杀, 只是给白衣女尼的袖力掌风逼住了,欺不近身。但那白衣女子头顶 已冒出丝丝白气,显然已尽了全力。她只一条臂膀,再支持下去恐 怕难以抵敌。地上斑斑点点都是血迹。 LONG ); set("exits", ([ "west" : __DIR__"kedian2", ])); set("objects", ([ __DIR__"npc/dubi" : 1, __DIR__"npc/lama" : 6, ])); set("c...
[ "i@oiuv.cn" ]
i@oiuv.cn
31ac4e1a586524c14562cedcd0bc44a9cab30e56
b0b1d36f4e16d23c5016ce81e49d3e41b761298d
/TP_Arquitectura_De_Computadoras-master/RowDaBoat-x64barebones-d4e1c147f975/Kernel/idtLoader.c
c290fa5c3704cf3d457217d909fa6f7d4564849c
[ "BSD-3-Clause" ]
permissive
JuanPabloLoCoco/TP_SO2
e7f9d491030592467d1fb9a769a16f47bf450aa4
e5bb55584556520541439384dbabc9f4a4e2ce6a
refs/heads/master
2020-03-17T12:24:07.910680
2018-06-06T23:21:39
2018-06-06T23:21:39
133,586,970
0
0
null
null
null
null
UTF-8
C
false
false
1,235
c
#include <stdint.h> #include <idtLoader.h> #include <defs.h> #include <interrupts.h> DESCR_INT idt[255]; // IDT de 255 entradas IDTR idtr; // IDTR static void setup_IDT_entry (int index, uint64_t offset); void load_idt() { _cli(); setup_IDT_entry (0x00, (uint64_t)&_exception0Handler); setup_IDT_entry (0x03...
[ "jlococo@itba.edu.ar" ]
jlococo@itba.edu.ar
bfaf49996fac6e26511190064762fce1600e4825
74666f4cd727372cd260ac29c9eeb2cc4e6eaf0d
/STM32Cube_FW_L0/Projects/STM32L073RZ-Nucleo/Examples_LL/TIM/TIM_DMA/Src/stm32l0xx_it.c
36eafd0915de488d93874f2ba79ae8e247c671e7
[ "BSD-2-Clause" ]
permissive
caseymillsdavis/STM32CubeL0
e33558588b4c38cd514b1fb6419369170ff6f825
c49c4c75ee330bf1129f8fa7e61ece25b74604ca
refs/heads/master
2021-01-09T05:27:51.272838
2017-02-02T22:06:38
2017-02-02T22:06:38
80,771,233
1
0
null
2017-02-02T22:06:38
2017-02-02T21:38:34
C
UTF-8
C
false
false
6,142
c
/** ****************************************************************************** * @file Examples_LL/TIM/TIM_DMA/Src/stm32l0xx_it.c * @author MCD Application Team * @version V1.8.0 * @date 25-November-2016 * @brief Main Interrupt Service Routines. * This file provides template ...
[ "casey@nestlabs.com" ]
casey@nestlabs.com
592bd6cef3404e71d359567d16a5fb0f98c198f4
afc13fc641948c3b78aac35a7eba29d82b648815
/sanfoundry/pointeraddress2/file7.c
851b8a33d11a4574ca618152f6dd927869263ef5
[]
no_license
sathishkumar339/sanfoundry
2de00631c8d25c0306a023f6750281de99f07cdf
c90aee3b7fd3f297186941e92f8d59d1c365f647
refs/heads/master
2020-09-04T00:43:14.696547
2019-11-05T00:32:27
2019-11-05T00:32:27
219,621,079
0
0
null
null
null
null
UTF-8
C
false
false
85
c
#include<stdio.h> void main() { int x = 0; int *ptr = &x; printf("%d\n",*ptr); }
[ "lsathishkumar339@gmail.com" ]
lsathishkumar339@gmail.com
d901226ec3a82d75d3e0a6aca2ea5be313ccde5c
efef01a0fd5ffbb3767047d1be7707e6934462ab
/libft/ft_strarrdup.c
199c0647666cc7baa787b59b87fcb167892a5fd0
[]
no_license
QuentinManemla/42sh
c7f1ec91a48c5c5a7e658b0a3b5cf942c351b473
eb2dfab530a90bb4a0bd0f3b818c38ae0bbb0f1c
refs/heads/master
2023-02-22T02:57:09.040933
2017-12-20T11:27:29
2017-12-20T11:27:29
null
0
0
null
null
null
null
UTF-8
C
false
false
1,135
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strarrdup.c :+: :+: :+: ...
[ "quintonacid@gmail.com" ]
quintonacid@gmail.com
cc72eb0a7d9377716208597c64b8e8b60a963368
16e0e88574ca5cb9cd9760c9bb0b36b10f46fae8
/example/convertBinary.c
3106bdea1a4886d701d623b67997b1ef9f21bfcc
[]
no_license
YougaKing/BasicPractice
72d0b1cc6b239f407465cdcd2c4803f59a4b8c52
ed6761f0d998aeaeba9879177869ed8b21240c7c
refs/heads/master
2021-09-09T12:50:44.315485
2018-03-16T09:01:04
2018-03-16T09:01:04
125,135,777
0
0
null
null
null
null
GB18030
C
false
false
1,079
c
// // Created by YougaKing on 2018/3/16. // #include <stdio.h> #include <math.h> long long convertDecimalToBinary(int n) { long long binaryNumber = 0; int remainder, i = 1, step = 1; while (n != 0) { remainder = n % 2; printf("Step %d: %d/2, 余数 = %d, 商 = %d\n", step++, n, remainder, n / 2...
[ "yougakingwu@gmail.com" ]
yougakingwu@gmail.com
64376b79c51289c851f737d295ec76d6248209a0
693333081e12de315ea505fe0db03d4b70cbecab
/src/private/FBmpWriter.h
b4049581ef294663af935fe29c03ca8c0bb17bc2
[]
no_license
yunyafeng/myLib
3c41b28853469eb5a359b8ac6f0356ec7c8cdbb0
6363ae3a082955f433085389a13c185a50b60f10
refs/heads/master
2016-09-12T17:40:20.397099
2016-06-03T03:19:24
2016-06-03T03:19:24
58,118,005
1
0
null
null
null
null
UTF-8
C
false
false
257
h
#ifndef __FBMPWRITER_H__ #define __FBMPWRITER_H__ #include "FIncludes.h" #include "FImage.h" #ifdef __cplusplus extern "C" { #endif // BOOL FBmpWriter_write(const char* fileName, const FImg* image); #ifdef __cplusplus } #endif #endif //__FBMPWRITER_H__
[ "yunya.feng@163.com" ]
yunya.feng@163.com
a67e43c6ddc76591af943f091a8cb6e95831e985
41ac1c41d73538ae4c3dfe53a0ecca0eddf75d48
/C-Programming/11-C-Characters-Strings/07.ImplementStringCopyFunction/main.c
057572d45939834cc650236b772e33982d48a297
[]
no_license
lyudoGO/SoftUniOpenCourses
c71d3fab91425bffd5846f787404a76eb8bef63c
203696397e764eb074d52fff28fed83869ac2339
refs/heads/master
2021-01-18T23:43:11.188718
2016-06-21T09:33:44
2016-06-21T09:33:44
47,958,309
0
0
null
null
null
null
UTF-8
C
false
false
1,295
c
/* * The standard C function strncpy(char *dest, const char *src, size_t n) * copies a chunk from the src string to the dest buffer. * Try implementing that function manually. Try doing it without a buffer, * by returning a string created in the body of the function. Does it work? * Think why it does or it do...
[ "llgg2312@gmail.com" ]
llgg2312@gmail.com
5f6dcd0dfe83b797a9570acd100391e4ee6fdc09
6727c0fe9ebacf162e31bba4e3a1a5169f962eb2
/src/bluetooth/l2cap.h
5c8081474c65addb286d4d00feba5eb015360836
[]
no_license
chixsh/C_BT_DSRC_TXRX
201f726e75d69edf02852103ab1494a999c21901
10e110de8e030429784e4c644b16434f0391e4f0
refs/heads/master
2020-12-11T05:34:00.559187
2016-03-03T16:56:31
2016-03-03T16:56:31
53,846,768
2
0
null
2016-03-14T10:22:11
2016-03-14T10:22:11
null
UTF-8
C
false
false
4,923
h
/* * * BlueZ - Bluetooth protocol stack for Linux * * Copyright (C) 2000-2001 Qualcomm Incorporated * Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com> * Copyright (C) 2002-2007 Marcel Holtmann <marcel@holtmann.org> * * * This program is free software; you can redistribute it and/or modify ...
[ "nawaiseh@gmail.com" ]
nawaiseh@gmail.com
99ef10b44393ac7c2fdc57ad14867bb648aa490a
9e44516ae8a43cfe55e0c6ae7f9ba9a42c4489cd
/lib/service.c
5d5325b4c45270631190620f397701bff9507233
[]
no_license
Lisa9601/SOA
9473b1d0c15e0fa5e474e2001ed1fb3aca1eb761
d7ed53644efd348ae4e3e00a4f23fe0602f5d677
refs/heads/master
2023-08-05T17:36:24.341226
2021-09-17T12:26:24
2021-09-17T12:26:24
389,933,881
0
0
null
null
null
null
UTF-8
C
false
false
5,657
c
/* --------------------------------------------------------------------------------------------------------------------- SERVICE This module implements a Linux kernel subsystem that allows exchanging messages across threads. Detailed info on what this module does can be found in the README.md file. ----------------...
[ "lisa.trombetti96@gmail.com" ]
lisa.trombetti96@gmail.com
6e21efa34da9d20636100582f36d83106a1db348
6092c6b6eb94b914757a12707e60339b9bc86f73
/src/kem/mceliece/mceliece6688128/avx/gf.h
f38ce69032f119d04bd618a9f1e6ff2b93e0c0ed
[ "BSD-3-Clause" ]
permissive
kriskwiatkowski/pqc
d0b3460b1911a9ec56234b2a7ace6be62b80476e
e7b5cfe9f8da9d24e25319c8f872133a07d866f2
refs/heads/main
2023-05-22T14:29:59.105860
2023-01-27T22:49:21
2023-01-27T22:49:29
351,077,384
24
1
BSD-3-Clause
2023-01-09T12:30:13
2021-03-24T12:48:09
C
UTF-8
C
false
false
595
h
#ifndef PQCLEAN_MCELIECE6688128_AVX_GF_H #define PQCLEAN_MCELIECE6688128_AVX_GF_H /* This file is for functions for field arithmetic */ #include <stdint.h> typedef uint16_t gf; gf PQCLEAN_MCELIECE6688128_AVX_gf_iszero(gf /*a*/); gf PQCLEAN_MCELIECE6688128_AVX_gf_mul(gf /*in0*/, gf /*in1*/); uint64_t PQCLEAN_MCELI...
[ "contact@amongbytes.com" ]
contact@amongbytes.com
ad925749031fd838b2c08112d7c7dbab17cda523
92e5525bbd32ee2b364b650747584bd95f41c0a0
/ext/webp_ffi/jpegdec.c
77f51dd6145d8c06edb8277c5d4d25c308e34536
[ "MIT" ]
permissive
le0pard/webp-ffi
814818662f958ac6bb050f1a7ced2f4c4282f9ac
11542b3d9b24f6c54b0bf0cebd4a7492e0f8150d
refs/heads/master
2023-08-21T13:49:02.839907
2023-08-10T20:06:21
2023-08-10T20:06:21
8,614,749
73
17
MIT
2019-01-31T15:55:08
2013-03-06T22:25:44
C
UTF-8
C
false
false
1,717
c
#include "./jpegdec.h" #include <stdio.h> #include <jpeglib.h> #include <setjmp.h> #include <stdlib.h> #include <string.h> struct my_error_mgr { struct jpeg_error_mgr pub; jmp_buf setjmp_buffer; }; static void my_error_exit(j_common_ptr dinfo) { struct my_error_mgr* myerr = (struct my_error_mgr*) dinfo->err; ...
[ "leopard.not.a@gmail.com" ]
leopard.not.a@gmail.com
eb0cc1a771e9fe2e593f5b52eae5bb311b2aad61
a1dd69b1fe8ff1db87519fa5848481702a955025
/lsp/kernel/7일차/signal1.c
876b3afcb3ba145cff7b021f8efb1cf3285ab5f5
[]
no_license
ding-ding/C-Programming
d360e521b10a1aa32684db676aefb9daef4daf97
2f568c6869d74ad7ff27de3a643d23e31145279d
refs/heads/master
2021-01-21T09:10:24.610972
2017-04-06T23:24:27
2017-04-06T23:24:27
82,877,060
0
0
null
null
null
null
UTF-8
C
false
false
238
c
#include <stdio.h> #include <signal.h> void my_sig(int signo) { printf("my_sig called\n"); } int main(void) { void (*old_p)(int); old_p = signal(SIGINT, my_sig); pause(); signal(SIGINT, old_p); pause(); for(;;) ; return 0; }
[ "kimdj417@gmail.com" ]
kimdj417@gmail.com
410f08eaaff9702e7ab2cfd6d3d80551aa282eeb
ef3a96c175fecc74dd76e3544f63cfe98a265feb
/lib/std/try_catch.h
5dec1268fe39af9b4ac63448eab5014f355e6006
[]
no_license
awojobigodfrey/Skiff
f594e1eb233c148c1b24b4a8be300ffea54a2afc
a8a635d00f7ef72375e235372d1c6e42f754554a
refs/heads/master
2022-05-27T23:37:22.356915
2020-04-30T17:10:55
2020-04-30T17:10:55
null
0
0
null
null
null
null
UTF-8
C
false
false
1,580
h
#pragma once #include <setjmp.h> #include <stdlib.h> #include "skiff_exception.h" #include <stdint.h> typedef struct skiff_catch_layer_struct skiff_catch_layer_t; struct skiff_catch_layer_struct { void * catch_class_ptr; jmp_buf current_catch_state; size_t sp_ref_val; void (*current_catch)(skiff_catc...
[ "me@donovanallen.net" ]
me@donovanallen.net
6c85665fea608f456498cde6be2ab8cf45b17711
5b3535a07144ac9463021cac0c2f29e696b2ec7b
/Mathnalysis/EcuacionesUnaVariable/secante.h
1f3d049202e0d00c037b0560cffabce029e393ac
[]
no_license
thelement115/Analisis
571490a8f457946ec2f2652c6713dd467472d093
b7ff06703a97c2e90c710e68f49ccec27426bcfe
refs/heads/master
2020-07-28T23:53:42.157557
2019-11-25T05:17:02
2019-11-25T05:17:02
209,586,841
0
0
null
null
null
null
UTF-8
C
false
false
97
h
#pragma once void secante(double (*func)(double), double tol, double x0, double x1, int niter);
[ "yamiyugi43@gmail.com" ]
yamiyugi43@gmail.com
7337ad7c88de8811304a544908d66c7221b0f550
55df1ad534a94dedffa09eea487a93231588af8d
/resolve.c
8bc78e6d484a0f55322dba84791c09542d9b7a3c
[]
no_license
azhuravkin/localtraf
9b0c6db0a97417ec30a9118f800e3ab92d4847e9
eeab995e28680e866465a333b1d854b53397518c
refs/heads/master
2021-01-10T21:04:21.178237
2016-01-26T12:24:39
2016-01-26T12:24:39
3,508,419
1
0
null
null
null
null
UTF-8
C
false
false
1,596
c
#include <netdb.h> #include <time.h> #include <string.h> #include <pthread.h> #include "main.h" #include "display.h" #include "resolve.h" #include "sort.h" static void resolve_host(struct host *tmp) { struct hostent *he; struct host *cur; if ((he = gethostbyaddr(&tmp->ip_big, 4, AF_INET))) snprintf(tmp->...
[ "alexandr.zhuravkin@gmail.com" ]
alexandr.zhuravkin@gmail.com
c4eb861e69169eda7871e025d36b2e30c64ba1be
dcd1674685e9e538a08b99c2fab0765309d0edb3
/sdk/pawn/amx/amx.h
f9bc760b5042722324d3422f814ee23da720e343
[]
no_license
legendabrn/arzHUD
c54fde0687d056b5fbfa7f5e22210ed0eef929c1
da286373f50330561abda6692a19561c3db68095
refs/heads/main
2023-07-20T18:19:27.885963
2021-09-03T05:31:06
2021-09-03T05:31:06
374,374,127
0
0
null
null
null
null
UTF-8
C
false
false
17,712
h
/* Pawn Abstract Machine (for the Pawn language) * * Copyright (c) ITB CompuPhase, 1997-2005 * * This software is provided "as-is", without any express or implied warranty. * In no event will the authors be held liable for any damages arising from * the use of this software. * * Permission is granted to a...
[ "noreply@github.com" ]
legendabrn.noreply@github.com
a5f98bab5c18975b6985d3193cad89b9123745f7
2538a6df9c14383ad83b9851266e621847012802
/Urquiza.Julio_PP_Labo1_1G/juego.c
b006a3712e29d79cfcb759c35cfa0c1bdfa358a0
[]
no_license
julio-urquiza/Parcial-Programacion1
632bb505bec93bd54a7fb8bc673e3ec0f5381cc7
78ccd9fea8885e4e382c195e85c66c547f5a63e5
refs/heads/main
2023-05-08T11:29:31.059649
2021-05-22T00:57:47
2021-05-22T00:57:47
367,486,911
0
0
null
null
null
null
UTF-8
C
false
false
1,118
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "juego.h" #include "categoria.h" void mostrarJuegos(eJuego juegos[],int tamj,eCategoria categoria[],int tamcat) { int indiceC; int flag=0; printf("lista de clientes:\n"); printf("%10s %10s %10.2s %10s\n" ,"codigo" ...
[ "julio.cesar.urquiza4@gmail.com" ]
julio.cesar.urquiza4@gmail.com
49cda7122a46c0d90d4764e5276ea8ae97db7fc3
fa1d1d1490136b0eae07038b67dc3113743b60ab
/Assignments/Week12/answers/Gemv_I_Dots.c
9918675ac9c2258970e681984e25871000ad27f4
[]
no_license
ULAFF/ALAFF
646edae06d58c0518d9146759698ba9fae75fa97
4d6e4ae1487658c4c5af3c5dd8ff3e2622877871
refs/heads/master
2022-07-26T09:03:48.358292
2022-07-10T20:53:37
2022-07-10T20:53:37
229,838,788
74
59
null
null
null
null
UTF-8
C
false
false
469
c
#define alpha( i,j ) A[ (j)*ldA + i ] // map alpha( i,j ) to array A #define chi( i ) x[ (i)*incx ] // map chi( i ) to array x #define psi( i ) y[ (i)*incy ] // map psi( i ) to array y void Dots( int, const double *, int, const double *, int, double * ); void MyGemv( int m, int n, double *A, in...
[ "rvdg2@Maggies-MacBook-Air-3.local" ]
rvdg2@Maggies-MacBook-Air-3.local
9af2f3641b298a8f466e1b961f364275b89c619a
aad4447d76f00deb725a2c37809056847d3d85b9
/LS1B-mips/SRC/BOOTLOADER/debug.c
6185247308361dd819af4e9fbbe6f2003f2c873d
[]
no_license
laoyouji/wince6.0-1b
586923be657348955f59ecddca0032774e983a90
9b386ee8c78434934e397bcd9ce0f126df898677
refs/heads/master
2021-01-13T02:07:23.557697
2012-05-27T06:38:57
2012-05-27T06:38:57
null
0
0
null
null
null
null
UTF-8
C
false
false
2,812
c
// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this source code is subject to the terms of the Microsoft end-user // license agreement (EULA) under which you licensed this SOFTWARE PRODUCT. // If you did not accept the terms of the EULA, you are not authorized to use // this source cod...
[ "linxiyuan-gz@foxmail.com" ]
linxiyuan-gz@foxmail.com
b5ddc06771d5103c594dc5aa54e0e16e68e58d3d
cd4fa50bccf2104c846ed94ff16de31c720c0dab
/lib/math/src/s_rintf.c
5fcfd71ef1f036e5fbb4ed64d3ad927d07be6719
[ "BSD-3-Clause", "BSD-4-Clause-UC", "MIT", "RSA-MD" ]
permissive
suhas95/os-pios
02f2abf5de4b66dbbff3098f374baa1afaa96307
c93d79f7673e989b92560629b07f3938a79bef18
refs/heads/master
2020-04-19T13:14:35.895410
2015-05-19T05:29:02
2015-05-19T05:29:02
35,861,158
0
0
null
null
null
null
UTF-8
C
false
false
1,198
c
/* s_rintf.c -- float version of s_rint.c. * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com. */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * * Developed at SunPro, a Sun Microsystems, Inc. business. * Per...
[ "suhas.y12@lnmiit.ac.in" ]
suhas.y12@lnmiit.ac.in
683413d9dd7e64c718573059f9e542c0418cb6fc
5ee5756833927fde5eb064481c31f3cb276c7992
/apps/realtek/incl/rtl871x_mlme_ext.h
59221d8447b9e46d9359cf6e2dd8ce6985207e08
[]
no_license
3a1fa340-312c-11e6-8775-0016d322cfd3/4b204d7c-312f-11e6-bd79-0016d322cfd3
ea99323665ba6f719f4be45b131fc51842f26f68
1c7673c9ad6a55bb35152fcc0c320caed9c1c2fd
refs/heads/master
2020-05-21T20:32:53.351683
2016-02-23T07:53:32
2016-02-23T07:53:32
61,012,135
0
0
null
null
null
null
UTF-8
C
false
false
7,635
h
#ifndef __RTL871X_MLME_EXT_H_ #define __RTL871X_MLME_EXT_H_ #include <drv_conf.h> #include <osdep_service.h> #include <drv_types.h> #include <wlan_bssdef.h> #include <wifi.h> struct mlme_handler { unsigned int num; char* str; unsigned int (*func)(_adapter *padapter, u8 *pframe, uint len); }; struct bssid_desc ...
[ "termywu@gmail.com" ]
termywu@gmail.com
4f3afef33750e3c615a115b25eba63520f6f096b
491aa4f6a479d9fb2043f870eb411eace615563b
/macros.c
0d3c9761bcc94cd6a40a4acf2d9389c23cbcf2d1
[]
no_license
vishsahu/Interesting_code_archive
2b39a69cddb969fa37941b3c7366890e6eae47aa
94e4759114e78696d5859968eb139a7916f79dad
refs/heads/master
2021-01-17T17:50:43.261048
2019-07-28T05:40:12
2019-07-28T05:40:12
70,644,047
0
1
null
null
null
null
UTF-8
C
false
false
751
c
/* * About: */ #include <stdio.h> /* this is correct and recommended macro */ #define SWAP(x, y) \ do { \ int temp = x; \ x = y; \ y = temp; \ } while (0) /* this is bad macro, may fail at expansions */ #define SWAP1(x,y) { \ int temp = x; \ x = y; \ y = temp; } int main(int argc, char* a...
[ "vishal.sahu@emc.com" ]
vishal.sahu@emc.com
089f48fa726a2f4e0cb70dab92cc4075db3dcbe9
810de70b1a23f5bd929a0b2afb51ecc7079f4cd9
/j03/ex08/ft_atoi.c
477fbb8404c630f12c60f35eceb12f258682f22a
[]
no_license
fbertoia/Piscine42
34b0af715280df1e6eae26a215af12870aa157e5
9115ae20a0863855565656a3d6019c2138d3b7c7
refs/heads/master
2021-05-07T22:08:15.099775
2017-11-01T17:02:36
2017-11-01T17:02:36
102,269,385
0
0
null
null
null
null
UTF-8
C
false
false
1,267
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_atoi.c :+: :+: :+: ...
[ "frederic.bertoia@gmail.com" ]
frederic.bertoia@gmail.com
3accf76f7dd22f7b8a0b944f5666fc8bc7d112e4
fba533e09f7972b00f5e1a580d30c846eb15fc6d
/common/hexdump.h
22fe88273c7c9445f12d862e0cc98400c2e0ca13
[]
no_license
neutronsharc/pylon
baccf402856e53b227dc1b33cb3f140315d313b0
6f0d49760afb9577a5424ef8d6aba9220dc1f862
refs/heads/master
2021-01-13T13:39:44.086989
2016-12-13T22:56:03
2016-12-13T22:56:03
76,399,727
0
0
null
null
null
null
UTF-8
C
false
false
7,083
h
/* ========================================================================== * hexdump.h - hexdump.c * -------------------------------------------------------------------------- * Copyright (c) 2013 William Ahern * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software...
[ "neutronsharc@gmail.com" ]
neutronsharc@gmail.com
63f93cde6cb1f605d6dba013574cf2861ea9e419
17363f2f48ec57225f663a3c75ce026b1778af5d
/vanitygaps.c
3b6f8e94b6b89555b6dd7216bed6ed36c74170fd
[ "MIT" ]
permissive
miguel-mkn/dwm
6c72e16f59fcf44ac51394f547e7f12062531edd
15d640f6bc6348bb879ba93025ea549aca1d6cda
refs/heads/master
2023-05-10T13:50:43.408638
2021-06-03T00:20:21
2021-06-03T00:20:21
369,395,644
0
0
null
null
null
null
UTF-8
C
false
false
19,854
c
/* Key binding functions */ static void defaultgaps(const Arg *arg); static void incrgaps(const Arg *arg); static void incrigaps(const Arg *arg); static void incrogaps(const Arg *arg); static void incrohgaps(const Arg *arg); static void incrovgaps(const Arg *arg); static void incrihgaps(const Arg *arg); static void inc...
[ "masumie@protonmail.com" ]
masumie@protonmail.com