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
7074f46186f9c87defb033e125bb1274b7cfefc8
5dfe9f1805aaba43d82c5d9be20b75d8c9c90646
/04 while/kadai04B.c
7377d1d6807f6ee6affa21b8338f6aa57cdae036
[]
no_license
jec15jn0108/c_programing
641ad2329d65e4c8b1b1af69648cd53ba76b516a
a078ee720a58e266a7edac2d81a6733148fe23de
refs/heads/master
2016-09-06T05:24:22.595956
2015-09-12T05:08:17
2015-09-12T05:08:17
39,120,404
0
0
null
null
null
null
SHIFT_JIS
C
false
false
281
c
#include <stdio.h> int main(void) { int num; int max = 0; printf("整数入力-->"); scanf("%d",&num); while(num > -1) { if(num > max) { max = num; } printf("整数入力-->"); scanf("%d",&num); } printf("最大値:%d\n",max); return 0; }
[ "kaichi_qoo_bita@gmail.com" ]
kaichi_qoo_bita@gmail.com
111be196bfb62593da821c8bd2767e80528845ec
7c857119fe1505b1d80d6e62969661c06dc1a2f4
/MdePkg/Include/Register/Intel/Msr/Core2Msr.h
e9d999cdd540a4a01c1ba623b16a9dcaa20b3ae1
[ "BSD-2-Clause" ]
permissive
CloverHackyColor/CloverBootloader
7042ca7dd6b513d22be591a295e49071ae1482ee
2711170df4f60b2ae5aa20add3e00f35cf57b7e5
refs/heads/master
2023-08-30T22:14:34.590134
2023-08-27T19:14:02
2023-08-27T19:14:02
205,810,121
4,734
770
BSD-2-Clause
2023-09-03T12:41:33
2019-09-02T08:22:14
C
UTF-8
C
false
false
33,987
h
/** @file MSR Definitions for the Intel(R) Core(TM) 2 Processor Family. Provides defines for Machine Specific Registers(MSR) indexes. Data structures are provided for MSRs that contain one or more bit fields. If the MSR value returned is a single 32-bit or 64-bit value, then a data structure is not p...
[ "isakov-sl@bk.ru" ]
isakov-sl@bk.ru
164188c4e9a64c54c5717825a1ebc9990b524c46
9128263783614b0068484959e9618d59909da611
/A1/wis-grep.c
437bd8957dc41bad819754bd50b677a73791e063
[]
no_license
Manyawaldia/CS-537
8b9ce2133db6dccd7639e9c324141a15c6d15c86
2214de7993542471b3f193e583635de4f0b41b56
refs/heads/master
2021-02-04T05:08:10.487770
2020-02-27T20:28:46
2020-02-27T20:28:46
243,622,051
1
0
null
2020-02-27T21:37:42
2020-02-27T21:37:41
null
UTF-8
C
false
false
1,833
c
#include <stdio.h> #include <stdlib.h> #include <string.h> /******************************************************************** * File name: WIS - GREP * Author: Alexandra Yavnilovitch ********************************************************************/ int main (int argc, char *argv[]) { /* * Verify that ther...
[ "yavnilovitch@snares-09.cs.wisc.edu" ]
yavnilovitch@snares-09.cs.wisc.edu
7cd62e738d2a7b0890b2b5b1e647304ea9da6bfd
a05fc8d7e587e3efb86b39bbf08d24e9b1ec3947
/test/Bool/runtests.c
30373470ced71dcbd6c8fc61d2d6683c639ce45e
[ "MIT" ]
permissive
FunctionalX/FunctionalX.C
4e20c5170ca30402eb3d8652a9e4b9392d08ddc9
d01a7b0278406850dea94516beb2d4420a692f23
refs/heads/master
2021-05-01T22:33:13.752062
2016-12-27T00:46:25
2016-12-27T00:46:25
77,398,506
0
0
null
null
null
null
UTF-8
C
false
false
21
c
#include "test_1.c"
[ "stevenaura@live.com" ]
stevenaura@live.com
b3acf9202c27ecd34ddc83b53b3296bfcc35284d
f4cf1d335fcaa4987c0bfa8d810a4d405edad3db
/09: heaps/src/heap.c
2414426e9a13bbaf336f88f6ce572e97090adf7f
[ "MIT" ]
permissive
amadionix/algorithms
4e1fd4c0261d6d7fe99b5516ea1ed47ca0a7fc2b
905d9531c0d1d5b2096f47bbb99565edf145a286
refs/heads/master
2020-07-01T17:10:26.540792
2019-09-24T09:33:47
2019-09-24T09:33:47
201,235,520
0
0
null
null
null
null
UTF-8
C
false
false
9,780
c
#include <stdio.h> /******************************************************************************/ // *** data structs *** // priority queue min-heap struct Item { int key; }; typedef struct Item Item; struct Heap { Item *h; int size, count; }; typedef struct Heap *Pqueue; // lists typedef struct ListNode{ Item it...
[ "noreply@github.com" ]
amadionix.noreply@github.com
2060c303877337fb614910f0dc5e492a29a63089
961b47344850040131f2647e8cc7f115f53b5e0d
/linux-note/ir-gpio/ir-hx1838-decoder.c
9ef209928b4c860bb361daa37c9c8813ef15d73e
[]
no_license
makejiec/learning-notes
2e6fcf0cd6480adb2da8939d3aaae19d5795839a
b71c87127683d2d79304b9f3dda2006cf60d1c04
refs/heads/master
2023-02-19T01:13:23.774951
2021-01-22T03:02:32
2021-01-22T03:02:32
330,938,545
1
0
null
null
null
null
UTF-8
C
false
false
7,059
c
/* ir-nec-decoder.c - handle HX1838 IR Pulse/Space protocol * * Copyright (C) 2010 by Mauro Carvalho Chehab * * 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. * ...
[ "564618534@qq.com" ]
564618534@qq.com
da886dcadc62cc0a38b9a94828c6e707d74dc376
c0ae1465982b7b93fe5e9a00791046025a4f3ed1
/Practice/Exercise2.c
ffc946248eddf8d0119f614cca5b588f4f310a2d
[]
no_license
Redperij/Practice_c_coding
544037a0fc51cc1d649be64228f6548b4c1e350f
0872e96e69570b42567660fe9ab92c6da112edae
refs/heads/master
2023-08-26T20:57:32.703001
2021-10-24T15:03:18
2021-10-24T15:03:18
408,888,992
0
0
null
null
null
null
UTF-8
C
false
false
781
c
#pragma warning(disable:4996) //disabling warning #include<stdio.h> /* int main() { float gross_income_array[12]; //array with gross income data float yearly_gross_income; //holds user input float total = 0; //sums all array elements printf("Please, enter yearly gross income: "); scanf("%f", &yearly_gross_incom...
[ "Daniil.Marinec@metropolia.fi" ]
Daniil.Marinec@metropolia.fi
dc2f9e57022401a92ffb8e9df21a04f3cc23f4a3
0ee9b57c84bb73fad2a87b321b000dba2f1776f8
/clang/test/Sema/error-dependence.c
b83a79f8c4c6522090f62894f645fdab99c0ce6b
[ "Apache-2.0", "LLVM-exception", "NCSA" ]
permissive
RossTate/llvm-project
ef2dd3c9dbccfaf58547abd4a99b72fb01803802
68e1a8d20795802077987529e1268c184d749564
refs/heads/master
2022-12-27T09:34:34.024977
2020-10-07T21:20:18
2020-10-08T00:00:43
null
0
0
null
null
null
null
UTF-8
C
false
false
565
c
// RUN: %clang_cc1 -fsyntax-only -verify -frecovery-ast -fno-recovery-ast-type %s int call(int); // expected-note2 {{'call' declared here}} void test1(int s) { // verify "assigning to 'int' from incompatible type '<dependent type>'" is // not emitted. s = call(); // expected-error {{too few arguments to functio...
[ "hokein.wu@gmail.com" ]
hokein.wu@gmail.com
ff689fcf65ec6f87cb9d44916aae3c58610d13fb
e24a981d22dc9f08eaead51792f5933d359f003d
/contrib/sdk/sources/Mesa/mesa-9.2.5/src/mesa/drivers/dri/common/xmlpool.h
e84adadbf019fcf11e4374b24762604bd60d6dd5
[]
no_license
Harmon758/kolibrios
d6001876fefb006ea65e5fe3810b26606e33284e
0d615a7c442e8974f58b7260b094c1212c618bcf
refs/heads/master
2023-08-20T11:47:59.999028
2023-08-20T10:40:03
2023-08-20T10:40:03
66,638,292
32
4
null
null
null
null
UTF-8
C
false
false
3,580
h
/* * XML DRI client-side driver configuration * Copyright (C) 2003 Felix Kuehling * * 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 limitati...
[ "Serge@a494cfbc-eb01-0410-851d-a64ba20cac60" ]
Serge@a494cfbc-eb01-0410-851d-a64ba20cac60
5b83ef92aea4f5a0513100aeee9c2d7465fd526f
f280b7bb428165bffcc50537914b2f66cb1485f4
/MiscPrograms/lab10/crawler/List.h
e00b3c1175e66f51386da3a1cefad387cfc8a6ed
[]
no_license
Samksha/DSA
96ad3a89fd8a23f645667ee4541dc4385ee2c2b0
4d76ac01411587034a06ee8fd54eb46b703898ed
refs/heads/master
2021-04-15T08:46:38.870991
2018-07-22T04:38:31
2018-07-22T04:38:31
126,206,192
0
0
null
null
null
null
UTF-8
C
false
false
350
h
#ifndef LIST_H #define LIST_H #include <stdio.h> typedef struct _element * Element; struct _element{ int v1; int v2; Element next; }; typedef struct _list * List; struct _list{ Element first; Element last; }; List newList(); List pushBack(List, int, int); List append(List, List); int isEmptyList(List); ...
[ "Samksha_Bhardwaj@Smax.local" ]
Samksha_Bhardwaj@Smax.local
ad21b0c92ef1af8ec5d9b4f787078b11999bcd01
6683a9f99a4ea047962bd7cd3961a70fd6083a8d
/lsdvs/hdd/hddLock.h
e126c81d326dee8180bc5018f1ec1be8c5b99878
[]
no_license
hl23889909/hi3515a-lsdvs
6dd6d764e70f01ad366d6cdb704d4270feea9c87
54c3bea1efb592aa1b9631b864ac7d7da1420fdd
refs/heads/master
2020-03-27T10:25:22.745150
2016-01-06T03:54:38
2016-01-06T03:54:38
null
0
0
null
null
null
null
UTF-8
C
false
false
123
h
#ifndef __HDDLOCK_H__ #define __HDDLOCK_H__ void HddMutexLock(); void HddMutexUnlock(); #endif // __HDDLOCK_H__
[ "250214838@qq.com" ]
250214838@qq.com
459a1f480f2f7df327d6383928f7e9d2de638b85
0825e5d50ca93dfe3c2d4766abec0d0428008773
/steam_api/ExtScript.h
dfd415473ef2cce09bf14f1558365989c945a2b1
[]
no_license
IW4M-Storm/fourdeltaone
af02c3387ff1aa2386c78af4f91ebce1d3657b45
291455b4723134aacf94078a0456a81d808d4581
refs/heads/master
2021-01-18T04:03:11.201095
2014-05-21T11:49:17
2014-05-21T11:49:17
20,019,213
1
0
null
null
null
null
UTF-8
C
false
false
551
h
// ========================================================== // IW4M project // // Component: clientdll // Sub-component: steam_api // Purpose: Game extensibility code. // // Initial author: NTAuthority // Started: 2012-04-21 // ========================================================== #pragma once #include <mongoo...
[ "ice.fringe@gmail.com" ]
ice.fringe@gmail.com
434a1fa462ec0638a9213942afd0cc18f22c89c1
f3082078f226ed9686fed19fe6a06dff1d11b375
/src/cubies.h
ad8b62abc60e298199ba9c701fc1a44824baa905
[]
no_license
gpollo/cglcube
56f50d97b890771ff6596a23d76b0130ecf441a2
f2d6baf30ca6d386c1adce61b5d5b7d7832f1b7c
refs/heads/master
2021-06-10T23:29:20.914775
2016-02-10T16:42:30
2016-02-10T16:42:30
null
0
0
null
null
null
null
UTF-8
C
false
false
1,511
h
#ifndef CUBIES_H #define CUBIES_H #include "std.h" #include "mesh.h" struct cubies { /** * Contains the position of the cubies. */ struct point st_pos; /** * Contains the mesh used to render to cubies. */ struct mesh* st_mesh; }; /** * This function initialises the cubies with sa...
[ "gabriel14_wii@hotmail.com" ]
gabriel14_wii@hotmail.com
d2c5dfff8680c696b279187484c8c0f1768969d9
71b6c8e28bdabf1876b110a8e08aad9a17780008
/Bios/src/hal/macros/WaitForStorage.c
792f93ab6dd9ee50696d3bc5ded523b88933d1d9
[]
no_license
BuLogics/libMSP430
bbae668a1df96e045b0d1e55e5e9aceda1354952
d949a8159e86dfaf0e1457682555b9278e0e48d2
refs/heads/master
2016-09-06T01:57:14.643076
2013-03-14T20:07:19
2013-03-14T20:07:19
8,761,493
16
21
null
null
null
null
UTF-8
C
false
false
6,508
c
/** * \ingroup MODULMACROS * * \file WaitForStorage.c * * \brief Check the state storage register for storage events and return storage * data on change * */ /* * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ * * * Redistribution and use in source and binary forms, with or w...
[ "far@bulogics.com" ]
far@bulogics.com
c6872ee0d9af5b7c3660f8ce3dd4ade83ede1255
ca9e9fd5ac0536f25dedff45ae561b18eeed3113
/include/Keyboard.h
5891d27c446396679ec6cb5d0de50ae26d1a2114
[ "MIT" ]
permissive
SKocur/3D-Vertex-Engine
8ff0793e66c25f1ece7e1aff943593cf48301e09
889f9b999052b57e1ededd0eacfca25fbeeee917
refs/heads/master
2021-01-12T17:44:24.425810
2017-06-16T20:53:00
2017-06-16T20:53:00
71,634,673
1
0
null
null
null
null
UTF-8
C
false
false
1,287
h
#pragma once #include "Main.h" #include <GL\glut.h> void Keyboard(unsigned char key, int x, int y) { Logs cords; if (key == 'w') { eyez -= 0.1; centerz -= 0.1; cords.writeCords(eyex, eyey, eyez); } if (key == 's') { eyez += 0.1; centerz += 0.1; cords.writeCords(eyex, eyey, eyez); } if (key == 'a') ...
[ "skocur10@gmail.com" ]
skocur10@gmail.com
832754c7b34a429d5f66a363c9ab065e94ef18c2
78ca1921dd96c1d8e27d0a5eeca0a1f0756bcde3
/test/libloader/loader_headers.h
4751626b990152dc15e57dcb839e0eb23185bd5f
[ "BSD-2-Clause" ]
permissive
Schtee/libcpu
9c6ffdd79efaabb88fae7663d5e613f26f8bd597
c84a1656453440cbd3317acf0d81eb44da9cb1a3
refs/heads/master
2022-07-31T21:02:16.085715
2020-05-24T22:07:05
2020-05-24T22:07:05
266,625,206
0
0
BSD-2-Clause
2020-05-24T21:09:03
2020-05-24T21:09:02
null
UTF-8
C
false
false
1,545
h
/* * Copyright (c) 2007-2008, Orlando Bassotto. 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 li...
[ "nextie@gmail.com" ]
nextie@gmail.com
dbb770a33eb3fd6075121ba241aa8f2389bbb2d5
90305ba24c89d8d6ba9d3e47cb6d5dafcdd45449
/field/CsEqn.H
752488ff7e3b66cb979dc9ab10a846e568e91e74
[]
no_license
onlyacan/fs
237501cfd346e9d7b54b6e022968907c59b3bf8a
724f807e1ff1fbf024deadf239a9e799643f39c4
refs/heads/master
2021-01-12T18:25:37.015771
2016-10-18T14:56:01
2016-10-19T14:47:40
71,374,859
0
0
null
null
null
null
UTF-8
C
false
false
476
h
dimensionedScalar Cs0("Cs0", C0 * kp); volScalarField Cs ( IOobject ( "Cs", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), mesh, Cs0 ); // used only in Cs Equation volScalarField ad_sd // = Ss * Ds / lsd; ( IOobject ( "ad_sd", runTime.timeName(), ...
[ "54acan@gmail.com" ]
54acan@gmail.com
cc0d992bdebf9d1bdef06f75e7ae7a63700e5d30
91ea231e36f5664fb6391e4c0df29c5ef6686d0c
/y1s2/pcd-ii/c5.1-advanced-functions/practical-10/p10q1.c
63cbdc1903a391a046e4d8fc8859f373ba09944b
[ "MIT" ]
permissive
chocotan725/dco-1820
91b247a53000d8f658e404cd509e80405812d502
2c2000c09c18cc47e9c13dbb5833d2c5bcea9d5a
refs/heads/master
2023-03-16T05:36:36.490695
2020-10-25T06:40:56
2020-10-25T06:40:56
null
0
0
null
null
null
null
UTF-8
C
false
false
1,518
c
/* Name: p10q1.c Desc: Stores and display integer array contents and total. */ #include <stdio.h> #define INTEGERS 4 void printArray(char arrName[], int arr[], int size); int totalArray(const int arr[], int size); void getArray(int arr[], int size); int main(void) { //variables int myArray[10], total; /...
[ "hiewlshun@gmail.com" ]
hiewlshun@gmail.com
a9fa704ae359cbf76c1ca8526c85bfb29b5fee98
24eaf463d2f8d0397fcfbcaaf921989969277e44
/UCTIMSCHARGING-IPTV/ctf_ro/ro.h
163402ab865179a2625c6bccf122f2c535e5e014
[]
no_license
WindyCitySDR/uctimscharging
6ee7a338c094fc46a2f2d73f178ac78549b2a8bc
b3621b69fc8755d5c26ef76eaa4f1f15244a9ef4
refs/heads/master
2021-01-18T07:30:51.504318
2014-09-24T14:35:24
2014-09-24T14:35:24
null
0
0
null
null
null
null
UTF-8
C
false
false
1,495
h
/* The UCT IMS Charging System Copyright (C) 2009 - University of Cape Town Vitalis Gavole Ozianyi <vitozy@crg.ee.uct.ac.za> Joyce Bertha Mwangama <joycebm@crg.ee.uct.ac.za> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publishe...
[ "matt.williams@metaswitch.com" ]
matt.williams@metaswitch.com
87c190bbffc299e8fe52abfb0020d6b386c26361
1885127468944405a0523c58e90627a6c3f07c89
/libft/ft_lstdel.c
e18e750bb905e1e0d65b49c9ed6bc022c20c168d
[]
no_license
volkov7/Minishell
c28e8a49133da9970f80e78b4a0582bade878e50
c61c4df691ff4ef9b8f1f6cc761a65ef344a93c2
refs/heads/master
2022-10-04T03:51:45.511023
2020-06-08T12:38:23
2020-06-08T12:38:23
233,218,983
0
0
null
null
null
null
UTF-8
C
false
false
1,181
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstdel.c :+: :+: :+: ...
[ "jsance@il-e5.21-school.ru" ]
jsance@il-e5.21-school.ru
81fecc3f3c3c721fc8dd47b9ce7526b82a372e6e
17b8e35d15a9d64d8f0703ae96115fb4702f2804
/Day05/ex01/ft_putnbr.c
a8327544ff54415e51588e77a7dd1c993bb0a566
[]
no_license
M1ZoN/42SiliconValley
7593b4eff55ccb61524e3d21703076c99594a87d
cd57fb936025d49cbc1daebdac90ec73f9e82803
refs/heads/master
2020-04-16T17:38:16.121378
2019-01-25T21:53:51
2019-01-25T21:53:51
165,783,756
0
0
null
null
null
null
UTF-8
C
false
false
1,176
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putnbr.c :+: :+: :+: ...
[ "noreply@github.com" ]
M1ZoN.noreply@github.com
b77c1693d1fda24a7780072bc9b56c8f5eefc9b9
76dc8933b3fa20ffda106d94c53d308d38ef435f
/Frames/dllFrame.h
70b92ab7b8fe54283d49443b2a3710ec4e48044f
[]
no_license
SorenHN/E6AMS-Project
3a2b0828fcc6d64297390a2275f58737683c115f
25d7220bf10aa58cbf64364733598119a01254a6
refs/heads/master
2021-04-08T19:07:12.551618
2018-06-18T08:15:11
2018-06-18T08:15:11
null
0
0
null
null
null
null
UTF-8
C
false
false
1,211
h
// // Created by munk on 5/26/18. // #ifndef E6AMS_DLLFRAME_H #define E6AMS_DLLFRAME_H #include <stdint.h> #include <stdbool.h> #include "appFrame.h" static const uint8_t VERSION = 0x01; static const uint8_t PREAMBLE = 0xAA; typedef struct { uint8_t preamble; uint16_t length; uint8_t version; App...
[ "aalsing@gmail.com" ]
aalsing@gmail.com
69761653a48128fab7a0da10658fa69ec99cb320
5521dca757f77a31ee92744979140acebc1664d3
/components/soc/esp32h2/spi_periph.c
bcb26e851ff6f540eddcf94c46d34e590c9a21bc
[ "Apache-2.0" ]
permissive
adityathakekar/esp-idf
4fdb9f1a1a384343f6152ca9072106af7a32a3b7
edd815af2e7d541b25ff3a74c59a7fe0612df42d
refs/heads/master
2022-12-23T17:45:59.687910
2022-12-13T18:22:49
2022-12-13T18:22:49
203,355,052
1
0
Apache-2.0
2019-08-20T10:38:12
2019-08-20T10:38:12
null
UTF-8
C
false
false
1,866
c
/* * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ #include "soc/spi_periph.h" #include "stddef.h" /* Bunch of constants for every SPI peripheral: GPIO signals, irqs, hw addr of registers etc */ const spi_signal_conn_t spi_periph_signal[SOC_SPI_P...
[ "caosenmiao@espressif.com" ]
caosenmiao@espressif.com
5e2e86b023ca7f510ebfe2ec2e8719be8de6abd2
e9f2121e6c158266af390c43b8993ad8fb552c77
/directory_changes.c
29b4b37cd4002fb5f02b092ba22a96b689a28eb6
[]
no_license
diyanshichaudhari18/Shell_Terminal
2aac78927698b3c560d45b1408c7a53345af9a73
31aeaeb829ccfdfefafde9aa0472973432c7738f
refs/heads/main
2023-04-14T18:19:16.859273
2021-04-30T02:02:37
2021-04-30T02:02:37
362,998,658
0
0
null
null
null
null
UTF-8
C
false
false
1,201
c
#include "smallsh.h" /** * Function to get the current directory, * using getcwd() method to implement task 2 * i.e. to change the prompt of the shell * to current working directory followed * by the dollar sign "$" * * return dir stream of character */ char *currentDirectory() { lo...
[ "noreply@github.com" ]
diyanshichaudhari18.noreply@github.com
e6a2a2393f8c101c3eacaf2ac870b1fe0ad21979
a44438ef80af2b6102f52860557fe2c7e591b673
/libft/ft_strequ.c
a4e734a97aa1642b393cf04600a52b966bad4dad
[]
no_license
Jpinyot/42_corewar
b70d253f04f9637a50bd0cad1e94cae701697310
dd1f2c90d5e99b45f3a92b25eb3bd5b23df38d54
refs/heads/master
2020-03-30T09:56:01.823560
2018-10-06T14:22:18
2018-10-06T14:22:18
151,098,478
1
0
null
null
null
null
UTF-8
C
false
false
1,064
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strequ.c :+: :+: :+: ...
[ "jpinyot@e3r9p10.42.fr" ]
jpinyot@e3r9p10.42.fr
bf28ea177b7779396d5d8fedd460452f1024317b
5c76f651415c2a8d057558af3ea73d1b8ebbc06a
/test/arm/arm-internal.h
0a0c88ee17aa35546ed1fe5628d3045a63811016
[ "MIT", "Apache-2.0" ]
permissive
zzqcn/simde
ba03d2ba976a076dd2b1612409fb65ac48251424
3905f7b7892abf57b2fd28a06db9295a7f34ba17
refs/heads/master
2020-09-16T10:55:18.349847
2019-11-17T04:00:38
2019-11-17T04:33:04
null
0
0
null
null
null
null
UTF-8
C
false
false
6,350
h
#if !defined(SIMDE__ARM_INTERNAL_H) #define SIMDE__ARM_INTERNAL_H #include "../test.h" #include "../../simde/arm/neon.h" #include <math.h> #if !defined(SIMDE_NO_NATIVE) # define NEON_TEST_SUITE(name) simde_neon_##name##_emul_test_suite #else # define NEON_TEST_SUITE(name) simde_neon_##name##_test_suite #endif #de...
[ "evan@nemerson.com" ]
evan@nemerson.com
f9968c3969c9c115b6008a2a46ef09f5fa83da8b
37586c677396da8d792c837ddf14bd889c60969d
/lib/my/disp_duck.c
82c0f6fb859a24869c5fc5374ceeaa3b689fcd38
[]
no_license
EnzoDelahaye/MUL_my_hunter_2018
49906f0ecd16ec622763573e5990c245ee116b39
c49257748b6eeea389a44e3d72d838641c3373bf
refs/heads/master
2020-06-18T07:24:08.377104
2019-07-10T13:57:27
2019-07-10T13:57:27
196,212,874
0
0
null
null
null
null
UTF-8
C
false
false
435
c
/* ** EPITECH PROJECT, 2018 ** disp_duck ** File description: ** 2018 */ #include <SFML/Graphics.h> #include "../../include/libopenmy.h" void disp_duck(sfRenderWindow *window, sfTexture *duck, sfSprite *duck_moove, sfIntRect rect) { sfSprite_setTexture(duck_moove, duck, sfTrue); sfSprite_setT...
[ "enzo.delahaye@epitech.eu" ]
enzo.delahaye@epitech.eu
0b6da46b39697ba537565186b459def0a1eb31dc
d3dc594f744b5604ac8f455d1dec8269c3705f8e
/minix1.3_tc2_tasm/lib/fread.c
606a1ede5edcb552e04200a93f3d14c4e0afbbe8
[]
no_license
mumu3w/MINIX1x_OLD
7ef6b6cc8b786004653cb54858f19c2e1b6f1260
6122294f7febf992e60fb32da8ced7427b3db59d
refs/heads/master
2020-04-21T06:27:57.765436
2019-02-07T03:24:22
2019-02-07T03:24:22
169,366,200
1
2
null
null
null
null
UTF-8
C
false
false
375
c
#include <stdio.h> fread(ptr, size, count, file) char *ptr; unsigned size, count; FILE *file; { register int c; unsigned ndone = 0, s; ndone = 0; if (size) while ( ndone < count ) { s = size; do { if ((c = getc(file)) != EOF) *ptr++ = (char) c; else return(ndone); }...
[ "mumu3w@outlook.com" ]
mumu3w@outlook.com
448d228faf0013e7449740bebb5047ae9bee183d
9f38a2b4f7cc8e7a7e48cd1312db4fd474952cbf
/src/thread.c
bd060c59978bd565b0be15b0662139df460f6a2a
[ "BSD-3-Clause" ]
permissive
vanvantong/copycat
8174c355c965f86a032cbff5d08b982a1c37ecc1
199582508f37bb25baac88e4a1dbd88795d0b87c
refs/heads/master
2021-06-18T06:07:44.480155
2017-06-15T11:56:43
2017-06-15T11:56:43
null
0
0
null
null
null
null
UTF-8
C
false
false
908
c
/** * \file thread.c * \brief The pthread wrappers * \author k.edeline * \version 0.1 */ #include "thread.h" #include "destruct.h" #include "sock.h" /** * \var pthread_barrier_t barr * \brief The synchronization barrier. */ pthread_barrier_t barr; void init_barrier(int nthreads) { pthread_barrier_init(&ba...
[ "korian.edeline@ulg.ac.Be" ]
korian.edeline@ulg.ac.Be
547e7804493adf089791d9f1365759517b64d3ae
210044ef5f81f13c34550270b3e37d05a62d5161
/UDPserver.c
5f74a1d662b6250bf9683f2e3cddeed80dfdc187
[]
no_license
indypxl/servers
0f7629b3b34568dfb1e39fd448d61b269d272f4e
cbbf3c449f2d23f7ce092d0d4b371fdaab5a009b
refs/heads/main
2023-04-25T20:39:59.963595
2021-05-31T21:28:56
2021-05-31T21:28:56
372,632,029
0
0
null
null
null
null
UTF-8
C
false
false
4,351
c
#ifdef _WIN32 #define _WIN32_WINNT _WIN32_WINNT_WIN7 #include <winsock2.h> //for all socket programming #include <ws2tcpip.h> //for getaddrinfo, inet_pton, inet_ntop #include <stdio.h> //for fprintf, perror #include <unistd.h> //for close #include <stdlib.h> //for exit #include <string.h> //for memset i...
[ "noreply@github.com" ]
indypxl.noreply@github.com
f828b121a894682408bcc3155870344949ae5556
517848af126ed8f198b890a07a6bc5b7b1b94683
/sys/netinet/libalias/alias_skinny.c
e726e55a181a50dcb560d18c57f7ce5dd420ed87
[]
no_license
coolgoose85/FreeBSD
e9dbd33b95bf0a472a3e291451c273054b843a1f
ef72c1183400fd106d838c8ed0702649bc1b1b4e
refs/heads/master
2021-01-15T22:29:25.584742
2014-08-03T17:32:40
2014-08-03T17:32:40
22,535,409
2
1
null
null
null
null
UTF-8
C
false
false
11,893
c
/*- * alias_skinny.c * * Copyright (c) 2002, 2003 MarcusCom, Inc. * 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 * ...
[ "vaibhav123@gmail.com" ]
vaibhav123@gmail.com
c873434f9f87ca6d5615ab940a178e8f7fb5d2b4
fde91d6194afbd180695062a80b0ea3de78de993
/str_revert/str_revert.c
aabd9f583d42c6f25bca3900e749d0614e4e889d
[ "Unlicense" ]
permissive
ismailnguyen/CUtils
21c1d1f460da22a0fa0017917e5220b7113ad320
e63cc0aa26be53abb7db8bb417e7392585b4103b
refs/heads/master
2021-07-14T02:57:32.404919
2021-06-28T10:24:31
2021-06-28T10:24:31
44,127,957
0
0
null
null
null
null
UTF-8
C
false
false
593
c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> void str_revert(char*); void str_revert(char* input) { int i,n; char lettre; n = strlen(input); for(i = 0;i <n/2;i++) { lettre = input[i]; input[i] = input[n-i-1]; input[n-i-1] = lettre; } ...
[ "me@nguyenismail.com" ]
me@nguyenismail.com
2bfb4ad877f152309f6942d8a4c98157ef44b0a9
194c5d0a6b4fb25ee1bbf2927d2a9ff84e6f6554
/var_args_ex1/src/var_args_ex1.c
1228563a474a64ac6c00fdffe32241dd4d4c9617
[]
no_license
mortela4/robust_c
47f09539ff204357f7a0bc7b2d160252579f1e97
845a7c64091d4f95635b9165653336cfeab03e80
refs/heads/master
2020-03-31T01:04:24.656536
2018-10-06T07:02:14
2018-10-06T07:02:14
151,765,691
0
0
null
null
null
null
UTF-8
C
false
false
1,047
c
/* ============================================================================ Name : var_args_ex1.c Author : ml Version : Copyright : Description : Hello World in C, Ansi-style ============================================================================ */ #include <stdio.h> #include <stdl...
[ "morten.larsen@7sense.no" ]
morten.larsen@7sense.no
97ab945e70423a906b81ec3ba95fdf0674ed505f
11a5c93ce7ced7ead6c8d2ba9f800c3b279ee00e
/HOOPS/Dev_Tools/base_stream/source/stream_common/BStreamMemory.h
9404297888c8396582cad7de8d7cd5f3176497d9
[]
no_license
hupech/MyBMConvert
563c6e3c14f54e52c626deeb012d8ac6e8174920
8acb45991c37796d48e67affaab2a46e774b29ee
refs/heads/master
2021-09-18T18:21:02.667847
2018-07-18T06:49:57
2018-07-18T06:49:57
null
0
0
null
null
null
null
UTF-8
C
false
false
1,644
h
// Copyright (c) Tech Soft 3D // // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc., // and considered a trade secret as defined under civil and criminal statutes. // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of // unauthorized use or misappropri...
[ "jiaguobing@126.com" ]
jiaguobing@126.com
55ab200b3391cef2e1584311652d7603e05f4f71
912c0751e1c59da0d2d15da0f227e06ad52fd0f4
/gps-push.c
e8ff38aa461b9b6c1b8f6407bf1d3423c00a9e1b
[]
no_license
douglaspriamo/gps-client
1d7fe5b3be7473715d5d5d31f3c76810c276dcb3
4302543298689aa4ad924607e4e8cd95d6108852
refs/heads/master
2020-06-10T21:59:48.497096
2018-05-21T02:40:56
2018-05-21T02:40:56
null
0
0
null
null
null
null
UTF-8
C
false
false
8,011
c
/* * Author: Daniel Maxime (root@maxux.net) * * 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 License, or * (at your option) any later version. * * This program i...
[ "root@maxux.net" ]
root@maxux.net
0cc33b5b81aac222d1f540e2b84f36dc62730411
6362aabfd8474dff369fa63252f350b610d0a182
/old-xinu-forwarding-version/include/prototypes.h
09851728c7905f3012b3507b5bade6e3729663a8
[]
no_license
u7karsh/os_virtual_mem
532ab496420b0b2e924b8d89da4f9f4ee9c8676e
5d0f2c72613e489e7d5870003e4141d30dd5208b
refs/heads/master
2020-04-07T10:39:26.461763
2019-01-25T00:58:01
2019-01-25T00:58:01
158,294,928
0
0
null
null
null
null
UTF-8
C
false
false
15,245
h
/* in file addargs.c */ extern status addargs(pid32, int32, int32[], int32,char *, void *); /* in file arp.c */ extern void arp_init(int32); extern status arp_resolve(int32, uint32, byte[]); extern void arp_in(int32, struct arppacket *); extern int32 arp_alloc(int32); extern void arp_ntoh(struct arppacket *); extern ...
[ "u7karsh@yahoo.co.in" ]
u7karsh@yahoo.co.in
71afe5ea24c7bd1f7a219d1449c09cda093dbc37
23d7d65dd7b51a917f7789a31ac3fcb6b4ea4e4a
/bender/phil/ofsw/cfe/fsw/cfe-core/src/time/cfe_time_tone.c
49e2723a2020675e945c0b21daf1ce0129cc7c00
[]
no_license
TomCrowley-ME/me_sim_test
8e1e6af4c2371372a3d77cd911ba303d0e6590ef
17b890c0083ddc911f73ee31f6b74f64217bc675
refs/heads/master
2021-01-01T05:07:56.061714
2016-04-25T11:33:07
2016-04-25T11:33:07
57,405,392
0
0
null
null
null
null
UTF-8
C
false
false
47,197
c
/* ** $Id: cfe_time_tone.c 1.11 2012/02/08 14:32:39GMT-05:00 jmdagost Exp $ ** ** ** ** Copyright (c) 2004-2012, United States government as represented by the ** administrator of the National Aeronautics Space Administration. ** All rights reserved. This software(cFE) was created at NASA's Goddard ** ...
[ "markagbayani@moonexpress.com" ]
markagbayani@moonexpress.com
9faadd5c2943b8a0ebaf784c19ea7eb56e37f327
9439733c1fa7689ec711b6e71d960e260b30e724
/oldC/NumRecipe/CCode/frprmn.c
ad301f982fe9155027a9f661f859dd0d08eb2064
[]
no_license
bobstine/lang_C
65a75951b450bee92ca2e411f20be961b660c2e6
dfe3411ffe5aa4389b6c43baced1bb974de7b995
refs/heads/master
2020-05-31T00:09:18.192842
2020-04-20T18:21:03
2020-04-20T18:21:03
190,020,135
0
0
null
null
null
null
UTF-8
C
false
false
1,158
c
#include <math.h> #define NRANSI #include "nrutil.h" #define ITMAX 200 #define EPS 1.0e-10 #define FREEALL free_vector(xi,1,n);free_vector(h,1,n);free_vector(g,1,n); void frprmn(float p[], int n, float ftol, int *iter, float *fret, float (*func)(float []), void (*dfunc)(float [], float [])) { void linmin(float p[], ...
[ "stine@wharton.upenn.edu" ]
stine@wharton.upenn.edu
8902160276ce3c0f8354e2dc434b3184fe0c7a76
c63f115a5ef6533d063bb27ba1c58ee4896732b1
/test/test_pem.h
a7999b7d3f1f5b97628c8f6455d1d1b3efd9b0a2
[]
no_license
jiangwei909/calabash
bdeed31fcbd7ac793602d189b2d6fc39ef6b11e5
3f2a109b0e2d4843c0e9d44743a96a7147f29d56
refs/heads/master
2020-09-12T11:35:18.653015
2019-11-18T09:27:31
2019-11-18T09:27:31
222,410,742
0
0
null
null
null
null
UTF-8
C
false
false
217
h
#ifndef TEST_PEM_H #define TEST_PEM_H void test_sm2_read_pvk_from_pemfile(); void test_sm2_read_pvk_from_pem_str(); void test_sm2_read_puk_from_pemfile(); void test_sm2_read_puk_from_pem_str(); #endif // !1`
[ "jiangwei@example.com" ]
jiangwei@example.com
2850da4469feac23f20c1b0ec3b3a9a79354d5e0
1fabbdfd1ca9ea1b6808893e12bd907eb74de414
/xcode/Classes/Native/mscorlib_System_Array_InternalEnumerator_1_gen_1216MethodDeclarations.h
aa1d3153c983f2ea904f7566063c2863ef0a9135
[]
no_license
Klanly/TutorialPackageClient
6f889e96c40ab13c97d107708ae8f3c71a484301
b9d61ba2f287c491c9565b432f852980ec3fee28
refs/heads/master
2020-12-03T01:42:35.256114
2016-11-01T02:40:21
2016-11-01T02:40:21
null
0
0
null
null
null
null
UTF-8
C
false
false
2,120
h
#pragma once #include <stdint.h> #include <assert.h> #include <exception> #include "codegen/il2cpp-codegen.h" // System.Array/InternalEnumerator`1<GuaJiGuildLogic> struct InternalEnumerator_1_t17488; // System.Object struct Object_t; // GuaJiGuildLogic struct GuaJiGuildLogic_t1432; // System.Array struct Array_t; //...
[ "bu213200@gmail.com" ]
bu213200@gmail.com
ec032ac3b538b8e53d59ed5b99bc2e3df027521b
09ae3310f8d515de3c47108d6915f816b8c40d4d
/SENSORY_BRIDGE_FIRMWARE/knobs.h
ba28d1257f65151b64f9c4c8add86f59e35b76f6
[ "MIT" ]
permissive
connornishijima/SensoryBridge
54460966fe6d6f6ce82b836f7bdd1530be71356b
a17ec09f8ed2988f18a5f28a0a873ddc65135e39
refs/heads/main
2023-08-29T00:28:44.466080
2023-07-11T21:30:09
2023-07-11T21:30:09
512,111,977
59
7
MIT
2023-08-07T01:30:17
2022-07-09T06:30:09
C
UTF-8
C
false
false
6,003
h
/*---------------------------------------- Sensory Bridge KNOB FUNCTIONS ----------------------------------------*/ uint16_t avg_read(uint8_t pin) { uint32_t sum = 0; sum += analogRead(pin); sum += analogRead(pin); return sum >> 1; } void check_knobs(uint32_t t_now) { // On every 10th frame, the knobs are...
[ "connornishijima@gmail.com" ]
connornishijima@gmail.com
28e5448ce220e5321ccb032b1b42066367e7b74d
53e4304255da970c24a5af1ea53ed870a7ba1bdd
/libft/ft_lstiter_bonus.c
901a23efbe3c1e8977ad2a1495048bce85f05286
[]
no_license
Syndraum/cub3d
3755d13cf2384e2568955628a60f3cda009d1120
7f38e7b4e4f778205204d89f1479a27ca59e75d0
refs/heads/master
2022-03-27T15:00:42.217732
2020-01-03T19:08:53
2020-01-03T19:08:53
222,945,312
0
0
null
null
null
null
UTF-8
C
false
false
1,042
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_lstiter_bonus.c :+: :+: :+: ...
[ "roalvare@e2r11p3.42.fr" ]
roalvare@e2r11p3.42.fr
8c1d89ca3f353f852c09789774b0e8839a4359e2
6900acfa877e1fd3235afc6553ba3c845dcf0194
/tax.c
c266cc1004e30862e92fc8ba4d645a858df13421
[]
no_license
rob137/king-c-exercises
41b742e7fb44a7cc459fb04c06e0c3098b621235
e88f96610a8141f4141dfbab90ba48829592fad2
refs/heads/master
2022-04-25T23:44:45.675017
2020-04-28T17:37:11
2020-04-28T17:37:11
254,672,752
1
0
null
null
null
null
UTF-8
C
false
false
237
c
#include <stdio.h> #define TAX 1.05 int main(void) { double beforeTax; printf("Enter dollars and cents amount (e.g. 2.55): "); scanf("%lf", &beforeTax); printf("The cost after tax is %.2lf\n", beforeTax * TAX); return 0; }
[ "robertaxelkirby@gmail.com" ]
robertaxelkirby@gmail.com
8842ea057b8d416febad7b92cafb72e00c3aa0b2
37dc8dc7d4a1c52226ed1e8255242d5454d04df9
/calculator.c
38b621135674a2a030ae7721321e2dc555c44d62
[]
no_license
Zinou6/Parallel_Calcul
89e8009c7a02b229a8eea7f1fbb09ad1ca7d291a
cb7fc085e15c8129f22d700a96f5c978b598bc7a
refs/heads/master
2023-02-27T01:02:06.205780
2021-02-05T11:40:24
2021-02-05T11:40:24
336,252,814
0
0
null
null
null
null
UTF-8
C
false
false
520
c
/* BY BENSAID ZINE EL ABIDINE */ #include <stdio.h> #include <stdlib.h> #include "calculator.h" typedef struct ENTRE{ int **matrix1; int **matrix2; int **matrix3; int indiceLigne; int indiceCol; int l; }ENTRE; void *calculCij(void * args){ ENTRE * E = (ENTRE *) args; E->matrix3[E->indiceLigne][E->indiceCo...
[ "bensaidzinou@gmail.com" ]
bensaidzinou@gmail.com
80489743f8a62c19a45e6509d3c393bcd75f0b35
5838cf8f133a62df151ed12a5f928a43c11772ed
/NT/termsrv/notify/wtblobj.c
7dca42577d6512a64260b58ee7993435a9f643a9
[]
no_license
proaholic/Win2K3
e5e17b2262f8a2e9590d3fd7a201da19771eb132
572f0250d5825e7b80920b6610c22c5b9baaa3aa
refs/heads/master
2023-07-09T06:15:54.474432
2021-08-11T09:09:14
2021-08-11T09:09:14
null
0
0
null
null
null
null
UTF-8
C
false
false
7,402
c
/*++ Copyright (c) 2000 Microsoft Corporation Module Name : wtblobj.c Abstract: Manage a list of waitable objects and associated callbacks. Author: TadB Revision History: --*/ #include <precomp.h> #pragma hdrstop #include "drdbg.h" #include "errorlog.h" #include "tsnutl.h" #include "wtblobj.h" ...
[ "blindtiger@foxmail.com" ]
blindtiger@foxmail.com
28df450eddc46031f751f3622727ab032e69c8eb
081a99298d0b98aae0b1d05d79fc039761df4c03
/amgcl.h
ec886057dffcf89a96e9efb2928879981ee3a43d
[ "MIT" ]
permissive
ddemidov/fortran_amg_omp_ocl
b785bf2a1b7971165d5e2d7a1a257c8b9764d714
9213b93ac4bb303826a5900bb356cede6b282104
refs/heads/master
2021-10-10T18:32:39.758967
2019-01-15T09:47:37
2019-01-15T09:49:36
107,552,264
9
0
null
null
null
null
UTF-8
C
false
false
3,867
h
#ifndef LIB_AMGCL_H #define LIB_AMGCL_H /* The MIT License Copyright (c) 20172-2019 Denis Demidov <dennis.demidov@gmail.com> 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, ...
[ "dennis.demidov@gmail.com" ]
dennis.demidov@gmail.com
5b0077318a1ac527c813685b9e2202228ecf8073
7771427be8742462e3795bcea4ac95d2a867a0c9
/TAREAS/3/main.c
2ed08f4c3a0aeb89bba645c305736d3373554dce
[]
no_license
karin-uno99/FP_2020-1_8723
e1bc413068c40474db446707e49f790372d18914
c09a5090b8b9329b3e066f635aa25828e4c4d7ed
refs/heads/master
2020-07-10T09:26:42.839372
2019-11-15T07:10:23
2019-11-15T07:10:23
204,305,530
2
0
null
null
null
null
UTF-8
C
false
false
241
c
#include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { double x, y; x= atof(argv[1]); y= atof(argv[2]); printf("%.2lf\n", x+y); printf("%.2lf\n", x-y); printf("%.2lf\n", x*y); printf("%.2lf\n", x/y); return 0; }
[ "karin.natalia.uno99@gmail.com" ]
karin.natalia.uno99@gmail.com
8013117f33add442055b439f2cdab0252b9f397f
f026cb616ef14bae15a1d251ca6dbe0f55016d9c
/linux/19808.c
4904aef7bdb0ec9189db06898398347269385084
[]
no_license
jajajasalu2/cocci-lkmp-c-files
3eb7d451929dca5cb6beb56aabd69fe3f7fc176c
5da943aabe1589e393a131121dbf8e7a84b3cf2a
refs/heads/master
2020-12-02T17:30:14.411816
2020-01-29T08:36:30
2020-01-29T08:36:30
231,053,574
1
0
null
null
null
null
UTF-8
C
false
false
441
c
cocci_test_suite() { struct irq_chip cocci_id/* arch/mips/txx9/jmr3927/irq.c 96 */; unsigned char cocci_id/* arch/mips/txx9/jmr3927/irq.c 73 */; int cocci_id/* arch/mips/txx9/jmr3927/irq.c 71 */; void cocci_id/* arch/mips/txx9/jmr3927/irq.c 71 */; unsigned int cocci_id/* arch/mips/txx9/jmr3927/irq.c 53 */; struct...
[ "jaskaransingh7654321@gmail.com" ]
jaskaransingh7654321@gmail.com
e208b4a22807aab67a451d756d7984296ee59d88
e41237f7e6d1c0eda0e2f4c5ac7a2236e70f8e73
/DPOA/include/wpa.h
aaeea29ee4f30c97e521473347fe6760f6fe56a4
[]
no_license
aniudashi/wireless-wifi-mt7603u
017052c0abccc8ae3bb6d3f57477bc6bc0a16bbc
dd15f82cc3c40e5e0421724c6879c3356ab7ea4a
refs/heads/master
2020-05-24T06:27:44.432240
2019-05-17T06:26:59
2019-05-17T06:26:59
187,137,971
11
2
null
null
null
null
UTF-8
C
false
false
12,059
h
/* *************************************************************************** * Ralink Tech Inc. * 4F, No. 2 Technology 5th Rd. * Science-based Industrial Park * Hsin-chu, Taiwan, R.O.C. * * (c) Copyright 2002-2004, Ralink Technology, Inc. * * All rights reserved. Ralink's source code is an unpublished work a...
[ "aniudashi@126.com" ]
aniudashi@126.com
1cb3a607718d92c57480b60fb1b95d1eabd62e01
32e85e34fcf22141cac1fccc4d2038de85b3917f
/merged/EQ_is_prime3EQ_ltfive/forward/old.c
0d70ac89a7ddfecca63f839d325842b95276f3c2
[]
no_license
vhui/CC2_examples
c1f717fb98cc0596cb5dd6b5a9c660bc36c6ee7e
d71528d740160ad2becb5b7cb54b6d52dd0a194f
refs/heads/master
2020-05-31T22:31:56.876823
2019-06-12T18:58:22
2019-06-12T18:58:22
190,508,097
0
0
null
null
null
null
UTF-8
C
false
false
696
c
static const unsigned int primes[8] = {2, 3, 5, 7, 11, 13, 17, 19}; int lib(unsigned int x, int b) { if (b == 0) { return 0; } else { for (int i = 0; i < 8; i++) { int mod = x % primes[i]; if (mod == 0) return 0; } } return 1; } int client(unsigned int x, int x_copy...
[ "vhui@alumni.ubc.ca" ]
vhui@alumni.ubc.ca
b6d00f05123704049062179d291c965726efc728
b5195773daaadd1d99b0c7031620e75c16bfb676
/unit_test/test_crypt/x509_verify.c
c3657cb3c94154261c6429f7d3d41653e47af22a
[ "BSD-3-Clause" ]
permissive
QPC-github/libspdm
eceedf00e235544794b41b18485b6af4cd8319bc
df3db1ba161f4164d5aca21dd394a940411b156b
refs/heads/main
2023-07-26T19:19:48.689983
2021-09-02T06:31:41
2021-09-13T15:06:35
621,496,508
1
0
null
2023-03-30T19:31:15
2023-03-30T19:31:14
null
UTF-8
C
false
false
10,858
c
/** Copyright Notice: Copyright 2021 DMTF. All rights reserved. License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md **/ #include "test_crypt.h" static const uint8 m_oid_subject_alt_name[] = { 0x55, 0x1D, 0x11 }; /** Validate UEFI-Crypto ...
[ "jiewen.yao@intel.com" ]
jiewen.yao@intel.com
058ac6a247a50693afb6fc1b8709dfb7c318454f
f905e8489d8e451fb1ef6aacaecdab5aa633bb38
/src/createparam.c
0fd01a63b0d45e6e3f58c2af3e079332f687ea6a
[]
no_license
MrRobot001/Fillit
3b0b7dd31744df149cfbf7df218fa2e3aa9f19a6
8207c85a8962c57badbd8ee06140885e7511e2f4
refs/heads/master
2020-07-03T05:35:32.571328
2019-08-11T18:52:07
2019-08-11T18:52:07
null
0
0
null
null
null
null
UTF-8
C
false
false
1,508
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* createparam.c :+: :+: :+: ...
[ "bdeomin@e1r3p4.unit.ua" ]
bdeomin@e1r3p4.unit.ua
7aa5e5eb49e3e35e1f1748b0565571aebaee3e62
d42e36382280d2d67e1e3a7a2eec7b63acc77781
/src/engine/engine.c
28751ddb5687ac73b12afa2668bc11ab886432b7
[]
no_license
linusonline/smug
39bf47221cd79ecba2f36bcdb3569f7820d2735b
276b1847ec514506524f937f456619b2a4215b14
refs/heads/master
2021-01-01T19:55:46.806884
2012-10-20T10:57:52
2012-10-25T09:48:38
5,978,831
0
0
null
null
null
null
UTF-8
C
false
false
1,587
c
#include <common.h> #include <utils/log.h> #include <graphics/graphics.h> #include <graphics/drawable.h> #include <utils/linkedlist.h> #include <engine/collisiondetector.h> #include <engine/engine.h> static BOOL isInitialized = FALSE; static LinkedList* gameObjects = NULL; static RenderQueue* currentRenderQueue = NU...
[ "linusonline@gmail.com" ]
linusonline@gmail.com
1dc73850039635efa0e7a5b6909697ddc1049ee2
c52af50c82e70fb00e1c64c17d76b9a289876293
/sip/sip_solver.h
205e0122199ca0618337b1c7ec71c2ff9e241aae
[]
no_license
davidlove/omrp
7686c7968c8941b3e66dfc2e5c599c3ccba82623
829ddcfd0f18542f7f8feea049bdc1663044cafa
refs/heads/master
2016-09-06T09:50:52.658757
2014-07-14T00:50:27
2014-07-14T00:50:27
null
0
0
null
null
null
null
ISO-8859-3
C
false
false
6,371
h
/* This program analyses the sample average approximation method for solving the stochastic knapsack problem (version inspired from the paper by Kleywegt, Shapiro, and Homem-de-Mello on the same topic). The analysis is conducted by solving successive sample average approximation problems with increasing sam...
[ "dlove@math.arizona.edu" ]
dlove@math.arizona.edu
bd1394f821329206856ab5b18c5d35b99ef0374e
e9486ad1125167076dfbd9742450a04db1234958
/Assignment_24/program_2/Main.c
3ec201990b48073833e8afe79211689a8a51b032
[]
no_license
vallabhgudsoorkar/Pratice
920a90e8dda031dfd94dde9efa68b3038145d814
a07f69c20e0df0f8df9353d6c26049e6bff1146f
refs/heads/main
2022-12-27T19:36:45.318515
2020-10-10T12:17:10
2020-10-10T12:17:10
300,609,598
1
0
null
null
null
null
UTF-8
C
false
false
1,366
c
/* Problem statement : 22.2 Accept N numbers from user and return difference between frequency of even number and odd numbers. Input : N : 7 Elements : 85 66 3 80 93 88 90 */ #include <stdio.h> #include<stdlib.h> #define ERRMEMORY 7218 #define ERRSIZE 1961 int ArrayCount(int iNo,int *arr) { ...
[ "noreply@github.com" ]
vallabhgudsoorkar.noreply@github.com
bd38709e5e0a12c38a26e86ba1058a8d32798942
18d95195a11449d83037cd96c421d3921c43e4bf
/DSA/ls3/5.c
5118bd5a06f68cb5c9ed573d5b2e623030a93b43
[]
no_license
RikilG/Academics
3ad9ea07208a226daca52b07aa727b094f62b8b0
b658ca8be3c11803540d9b581331ded9be338f4f
refs/heads/master
2020-04-16T02:40:59.575913
2019-12-15T06:36:50
2019-12-15T06:51:13
165,204,405
0
0
null
null
null
null
UTF-8
C
false
false
2,404
c
#include<string.h> #include <stdio.h> int count=0,max = 0; int dfs(int starti, int startj, int n, int adj[n][n], int visited[n][n]) { if(!(starti>=0 && startj>=0) || visited[starti][startj] != 0) { //printf("returning fun, starti=%d, startj=%d, visited[starti][startj]=%d\n",starti,startj,visited[starti][s...
[ "noreply@github.com" ]
RikilG.noreply@github.com
c68766d1166211b06f570141bd8d20883eec8221
24d856d98c85a319d53be2768ccc176a50873fa3
/test/kernel_tests/micro_test/socket_test/test/client.c
3216bc4fc7a1309156c66ac252c917936fa2b88c
[ "BSD-2-Clause" ]
permissive
dozenow/shortcut
a4803b59c95e72a01d73bb30acaae45cf76b0367
b140082a44c58f05af3495259c1beaaa9a63560b
refs/heads/jumpstart-php
2020-06-29T11:41:05.842760
2019-03-28T17:28:56
2019-03-28T17:28:56
200,405,626
2
2
BSD-2-Clause
2019-08-03T19:45:44
2019-08-03T17:57:58
C
UTF-8
C
false
false
908
c
#include <sys/socket.h> #include <sys/un.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> //char *socket_path = "./socket"; char *socket_path = "\0hidden"; int main(int argc, char *argv[]) { struct sockaddr_un addr; char buf[100]; int fd,rc; if (argc > 1) socket_path=argv[1]; if ( (fd = socket(AF...
[ "ddevec@umich.edu" ]
ddevec@umich.edu
42aef8c0e55c7ac7fe0569e0a8926f59977ae354
7a9c3a185731608f07e6331954d03636dac5cbdf
/graphics/include/FreeImage.h
90b34ca6fab1686925a376dea14b3cc74ce51436
[]
no_license
nyanzebra/Jang
ae16dbd5f0c9658bb0efb88c26174f90cdf64c1f
f71b74398e3c09a7a64980c7b6b14c49d7150999
refs/heads/master
2021-03-24T13:47:01.405507
2016-06-06T15:15:45
2016-08-21T03:33:52
56,929,764
0
0
null
null
null
null
WINDOWS-1250
C
false
false
57,728
h
// ========================================================== // FreeImage 3 // // Design and implementation by // - Floris van den Berg (flvdberg@wxs.nl) // - Hervé Drolon (drolon@infonie.fr) // // Contributors: // - see changes log named 'Whatsnew.txt', see header of each .h and .cpp file // // This file is part of F...
[ "robbaldwin95@gmail.com" ]
robbaldwin95@gmail.com
a6022d719e8a477e7089f8151fe532802b611ba4
c776476e9d06b3779d744641e758ac3a2c15cddc
/examples/litmus/c/c-litmus-CBMC/2+2W+dmb.sy+rfi-addr-rfi-addr.c
dc45d28e4049c26e7a2822a00bb7893a71026f08
[]
no_license
ashutosh0gupta/llvm_bmc
aaac7961c723ba6f7ffd77a39559e0e52432eade
0287c4fb180244e6b3c599a9902507f05c8a7234
refs/heads/master
2023-08-02T17:14:06.178723
2023-07-31T10:46:53
2023-07-31T10:46:53
143,100,825
3
4
null
2023-05-25T05:50:55
2018-08-01T03:47:00
C++
UTF-8
C
false
false
1,288
c
/* Copyright (C) 2023 ARM-CBMC * This benchmark is part of ARM-CBMC */ #include <assert.h> #include <pthread.h> // Memory barriers #define FENCE() asm volatile ("mfence" ::: "memory") volatile int vars[3]; volatile int v_1_X2_2; volatile int v_1_X6_1; void *t0(void *arg){ label_1:; vars[0] = 2; FENCE(); va...
[ "tuan-phong.ngo@it.uu.se" ]
tuan-phong.ngo@it.uu.se
50e7638c5609903c1d1d81aef7aa85d0db520c40
3e5ae9b260b16fcc86bb0669c1bd4e56912b5433
/VCB600ENU1/MSDN_VCB/SAMPLES/VC98/SDK/DBMSG/MAPI/PEER.XP/XPRCVMSG.C
462b0830c0c8ee20fe36787765413f0c5e512650
[]
no_license
briancpark/deitel-cpp
e8612c7011c9d9d748290419ae2708d2f3f11543
90cdae5661718e65ab945bcf45fe6adff30c1e10
refs/heads/main
2023-06-14T14:07:05.497253
2021-07-05T01:46:04
2021-07-05T01:46:04
382,984,213
0
0
null
null
null
null
UTF-8
C
false
false
52,164
c
/* - X P R C V M S G . C - * Purpose: * Code to support the MAPI Transport SPI entry points for * message reception. This module contains the following * SPI entry points: * * Poll() * StartMessage() * * Additional support functions found here: * * ...
[ "briancpark@berkeley.edu" ]
briancpark@berkeley.edu
831fc144d6ee46650b01108b88420cfe9638ebae
16e5a25014670f05e246a2464d9d25f1fbb821c5
/software/glove/driverlib/MSP430F5xx_6xx/lcd_b.h
53efd6dc68110102adce1e83190ee5f0f94cefdf
[]
no_license
hlohse/sound-glove
b3b7fcd63dd524fd68b7e2f65a8f7583e33abe5d
e33a3bfabbc5ed23b377ae1426e849db392cc40b
refs/heads/master
2020-05-26T17:56:23.905962
2015-09-03T09:04:12
2015-09-03T09:04:12
41,251,963
1
0
null
null
null
null
UTF-8
C
false
false
76,245
h
/* --COPYRIGHT--,BSD * Copyright (c) 2014, Texas Instruments Incorporated * 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 copy...
[ "henning.lohse@gmail.com" ]
henning.lohse@gmail.com
aa05975608cb2d97fc92bb6ce2809ecacd723f15
e717b594a3953a1659b5934d496c1dc1e0fdbbd3
/bits/value.h
c2f4f3a82a120aca293c1db4d45db8672a0f02d8
[]
no_license
ivstefano/jit
af0479fac2b506a679b6c9c7c87cb4ac0a030703
56c999fb363861d5241d29e5264bb34a1b44d718
refs/heads/master
2021-01-18T05:44:00.594064
2014-05-27T10:18:44
2014-05-27T10:18:44
null
0
0
null
null
null
null
UTF-8
C
false
false
13,873
h
/* +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2013 The PHP Group | +--------------...
[ "joe.watkins@live.co.uk" ]
joe.watkins@live.co.uk
1c37ee45b8ce1d32a12da6e6de0413c4a4878053
9a79e248a0184c1ddfe421ed3e3f300581bc25d8
/deck.c
99cdbaa2b3a968fd98e5137cd8a9c5e6d2f820ba
[]
no_license
raycastillo2/GoFish
cade194595ddfe07019a9149d40b4b09277bf447
2d10b37b513adaf32c0f9aa5c7da5e517012e01d
refs/heads/main
2023-08-21T22:19:48.363562
2021-10-19T17:12:17
2021-10-19T17:12:17
419,020,193
0
0
null
null
null
null
UTF-8
C
false
false
1,284
c
#include "deck.h" int shuffle() { char suits[4] = {'S', 'H', 'D', 'C'}; char* ranks[13] = {"A", "2", "3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K"}; int index = 0; for (int i = 0; i < 4; i++) { for (int j = 0; j < 13; j++) { struct card curr_card; curr_card.suit = suits[i]; curr_card.rank = ...
[ "74738343+raycastillo2@users.noreply.github.com" ]
74738343+raycastillo2@users.noreply.github.com
5cc5cd8c2a18b88d0a5906c3cd84ed5395a993d0
d6a744965c8f8a6c353f65f3512436741404dc09
/0x06-pointers_arrays_strings/5-string_toupper.c
d2674c905fd969c81e83cfaf769a97880983621f
[]
no_license
ElkinAMG/holbertonschool-low_level_programming
153ea4d9416d99240bce75dc7334aa0b4a5fa00e
1fd9b8467d4b397ac216da62c446950e51bb476c
refs/heads/master
2020-12-28T17:25:49.523796
2020-08-26T20:32:21
2020-08-26T20:32:21
238,420,659
0
0
null
null
null
null
UTF-8
C
false
false
381
c
#include "holberton.h" #include <stdio.h> /** * string_toupper - changes all lowercase letters to uppercase. * @s: string * * Return: return uppercase letters. */ char *string_toupper(char *s) { int i; i = 0; /*travel through the string until the end*/ while (*(s + i) != '\0') { if (s[i] >= 'a' && s[i] <= ...
[ "elkinandresmejiagueto@gmail.com" ]
elkinandresmejiagueto@gmail.com
a049b0fae5d9b8a736620312032405a56ba0a187
3057e3049e7bb527af4dd301be0f2de5a39058aa
/Ressources/42sh_update/lib/myprintf/my_showstr_octal.c
d6962f65a868e0139b4f19353f3ee287e1df55aa
[]
no_license
AntwaneB/Epitech-42sh
452a216b566f014ee03db647687d47031db2236a
18dc344fc74f529e7c819a7bfc3ca0011686e421
refs/heads/master
2021-05-01T23:37:17.808481
2018-01-31T21:00:40
2018-01-31T21:00:40
77,797,471
0
0
null
null
null
null
UTF-8
C
false
false
607
c
/* ** my_showstr.c for my_showstr in /home/schoch_h/Piscine/Piscine-C-lib/my ** ** Made by SCHOCH Hugo ** Login <schoch_h@epitech.net> ** ** Started on Tue Oct 8 13:49:03 2013 SCHOCH Hugo ** Last update Thu May 8 14:20:59 2014 Hugo Schoch */ #include "../../include/myprintf.h" int my_showstr_octal(char *str) {...
[ "antoine.buchser@epitech.eu" ]
antoine.buchser@epitech.eu
f60109ff1d643d2d4d0e7943d256d62a4c1726d6
0a54678568dff233c45c8cce2cbcb4c8d6237133
/DUMP/WBP_DebugMenuPage_EditWeapon_classes.h
f6c270f44ebc4eb61a148b81e5548fe938b85662
[]
no_license
xkp95175333/NineToFiveClient-Win64-Shipping
4ebf211a147a0b6b809e4067d58d248ee9ba290d
43f2252de5992ef6e907b8fd9ac5bf25645295d0
refs/heads/main
2023-07-27T02:53:26.014095
2021-09-06T17:55:41
2021-09-06T17:55:41
403,714,603
2
0
null
null
null
null
UTF-8
C
false
false
6,201
h
// WidgetBlueprintGeneratedClass WBP_DebugMenuPage_EditWeapon.WBP_DebugMenuPage_EditWeapon_C // Size: 0x3e0 (Inherited: 0x260) struct UWBP_DebugMenuPage_EditWeapon_C : UUserWidget { struct FPointerToUberGraphFrame UberGraphFrame; // 0x260(0x08) struct UWBP_Button_C* ClearSelection; // 0x268(0x08) struct UComboBoxStr...
[ "68745798+xkp95175333@users.noreply.github.com" ]
68745798+xkp95175333@users.noreply.github.com
a490acac4558a742eeeff5449885f42d2e4643e2
598737b786a20889dc6acd468478baf4972535b3
/src/dist/bind/lib/dns/dnssec.c
4787f30897451264fbfeb37e0e4e3b7762859362
[ "ISC" ]
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
21,647
c
/* $NetBSD: dnssec.c,v 1.1.1.2 2004/11/06 23:55:36 christos Exp $ */ /* * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2003 Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted...
[ "keiichi@mobilegravity.sfc.wide.ad.jp" ]
keiichi@mobilegravity.sfc.wide.ad.jp
b7275b97fc9c6ca3e15e36f0a0c128d07a9b7300
a5bc2364b94f27bf20ef658f67dc736d71252019
/teams/team1/cuibo/source/face.c.c
ed24196ebed02aa20a01327e243ccdb69414b293
[]
no_license
Augment-Reality-Class/class
11b155ff9a4b5b091e4fa61c15ef7a405d902013
9ac9e895e5fc1b244fee2fe27e9830c1b43e69d9
refs/heads/master
2020-03-07T20:53:38.526188
2018-06-14T08:01:03
2018-06-14T08:01:03
127,710,172
4
1
null
null
null
null
UTF-8
C
false
false
7,429
c
#include <GL/glut.h> #define X 0.525731112119133606 #define Z 0.850650808352039932 static GLfloat vdata[113][3] = { 0.000000f,1.061000f,-0.371000f, 0.174000f,0.800000f,-0.024000f, 0.000000f,0.539000f,0.085000f, 0.000000f,0.278000f,0.107000f, 0.000000f,0.213000f,0.085000f, 0.000000f,-0.222000f,0.210000f, 0.000000f,-0...
[ "noreply@github.com" ]
Augment-Reality-Class.noreply@github.com
f5ee242d4210e06c1dc3da1ae3c1029316ef5ef9
43e4bf8f1772eafd23d9da10955d77bd7781ecd1
/prepa_final/union.c
079a925397b1abc5b854fda15a23ca96f9670209
[]
no_license
mestelias/Piscine42_retry
9747542176c9f7f21d39df8250b2d2b41f556576
59d703e638d45a42d565220d982ae97a7063661d
refs/heads/main
2023-07-17T20:13:03.023574
2021-08-28T17:32:24
2021-08-28T17:32:24
397,283,450
0
0
null
null
null
null
UTF-8
C
false
false
716
c
#include <unistd.h> int check_double(char *str, char c, int pos) { int i; i = 0; while (i < pos) { if (str[i] == c) return (0); i++; } return (1); } int check_double2(char *str, char c) { int i; i = 0; while (str[i] != '\0') { if (str[i] == c) return (0); i++; } return (1); } int mai...
[ "noreply@github.com" ]
mestelias.noreply@github.com
2bb556e346898bf954d714669c52b7260a343336
8a56e2fe329e79da2a9cf21720b07e808d631fc3
/src/powmeas.h
1777ead721fb3dc15f6fb0229a05c4a97ff816d4
[]
no_license
efti-nile/gsme2
88458d2d9f3ee0c02f5b95610a7cd9450c43befb
430a2e023092844dfec2bd5a6ca414a8152005e4
refs/heads/master
2021-01-15T11:40:51.624220
2015-11-24T14:18:57
2015-11-24T14:18:57
33,534,593
0
0
null
null
null
null
UTF-8
C
false
false
1,864
h
#ifndef _POWMEAS_H_ #define _POWMEAS_H_ #include "io430.h" #include "types.h" #include "delay.h" // Timeouts //////////////////////////////////////////////////////////////////// // 1 == 2 ms approx #ifndef __DBG__ #define BATMEAS_PER 500 #else #define BATMEAS_PER 500 #endif // Samples per 1 mea...
[ "efti.nile@gmail.com" ]
efti.nile@gmail.com
2cb71803c7606fd68b852486f5ecc1bd2b48dcbb
43f6d37b1380236646739df718f8a7b0c29d57a9
/MySFMLGame/GameState.h
2ef94465983bbbac8794fb51e18b423172a8cdb9
[]
no_license
kchieppo/MySFMLGame
ccc33fc1ba827986d66640cfb7e6d8e9adcbae19
bfc12305de95d9e2900f13d3f309fc2fce34a74d
refs/heads/master
2020-06-17T06:55:38.601039
2020-04-11T01:05:56
2020-04-11T01:05:56
195,837,198
0
0
null
null
null
null
UTF-8
C
false
false
162
h
#pragma once /* Defines the different game states used in the game loop. */ enum class GameState { TitleScreen, GameScreen, MainMenuScreen, GameOverScreen };
[ "kchieppo@gmail.com" ]
kchieppo@gmail.com
870f98a16c455286dfb1bfa30827b966fd944be6
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/net/ethernet/atheros/atl1c/extr_atl1c_ethtool.c_atl1c_get_link_ksettings.c
b72ff1d5959a00d4a7d62042cc1af2d4e48bcf02
[]
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
2,819
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
a380dfaea8c078705445f8c3f6afb12df4800cbf
2323fc883b8eff7f87dcb5f3a4e68b3773da2c17
/m3-loaders/drivers/vpu/source/pp/ppapi.c
5c697a997a5a9298c3d7101c517e451e48a0935e
[]
no_license
haolask/STA5_M3_Stration
c8be8431167de2ffcfeea289762d1085896dde9e
93767f8c6fa19a7649d0ea713ae42047d3947144
refs/heads/master
2020-08-17T16:34:12.672961
2019-10-17T08:33:10
2019-10-17T08:33:10
215,687,516
0
0
null
null
null
null
UTF-8
C
false
false
57,854
c
/* * (C) COPYRIGHT 2011 HANTRO PRODUCTS * * Please contact: hantro-support@verisilicon.com * * 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 License, or (at you...
[ "fangyunmeng@hotmail.com" ]
fangyunmeng@hotmail.com
2743e40d8ca07b6c43df4dbcdaf038d121013a67
26458f250340fe9f897be704323f44005c41e7b2
/Z80Em/Source/z80/z80stackjp.c
f39562fe22d0b3a192e1f7e7f10e6139fd3214a6
[ "MIT" ]
permissive
TomHarte/Juvenilia
4c26936745e8eb9218fc21bec1bbf8e5a2479134
036177ff48d1c41cb6e57cdaecb05759c820b533
refs/heads/main
2023-01-24T19:19:03.285581
2020-12-09T15:02:10
2020-12-09T15:02:10
319,782,908
0
0
null
null
null
null
UTF-8
C
false
false
3,974
c
#include "z80.h" #define get_jaddr() jaddr.bytes.low = readmemory(pc);\ pc++;\ jaddr.bytes.high = readmemory(pc);\ pc++; void z80_push(void *var1, void *var2) //top, bottom { z80_outflag = 2; sp.full -= 2; z80_outaddr.full = sp.full; ...
[ "thomas.harte@gmail.com" ]
thomas.harte@gmail.com
14690ee6c7788ab6930a543018b623d77e9109b9
c8e691ff1c35b50567603c2c1ab05df028c7cba3
/include/dm/common/common.h
dc2d2bec45e72bd5314f5f23fb2a083060213752
[ "BSD-2-Clause" ]
permissive
EiffelOberon/dm
561465d02f4e37f5daa7d0d8cbb9b3d49043bc83
2f792a165beaffb083e6628153c55944e4353ba4
refs/heads/master
2020-02-26T13:54:53.153908
2015-07-01T10:07:28
2015-07-01T10:07:28
null
0
0
null
null
null
null
UTF-8
C
false
false
394
h
/* * Copyright 2014-2015 Dario Manesku. All rights reserved. * License: http://www.opensource.org/licenses/BSD-2-Clause */ #ifndef DM_COMMON_H_HEADER_GUARD #define DM_COMMON_H_HEADER_GUARD #include "../../../3rdparty/bx/macros.h" //BX_FORCE_INLINE #define DM_INLINE inline #define DM_STATIC_ASSERT BX_STATIC_ASSERT...
[ "dariomanesku@gmail.com" ]
dariomanesku@gmail.com
c8b1db253788a480522d3990e563b396e23dfb6f
598737b786a20889dc6acd468478baf4972535b3
/src/dist/am-utils/conf/nfs_prot/nfs_prot_freebsd2.h
84eba40e2c3b226b420d98d29b43fa6b7ab995e4
[ "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer" ]
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
4,635
h
/* $NetBSD: nfs_prot_freebsd2.h,v 1.1.1.7.2.1 2005/08/16 13:02:20 tron Exp $ */ /* * Copyright (c) 1997-2005 Erez Zadok * Copyright (c) 1990 Jan-Simon Pendry * Copyright (c) 1990 Imperial College of Science, Technology & Medicine * Copyright (c) 1990 The Regents of the University of California. * All rights reser...
[ "keiichi@mobilegravity.sfc.wide.ad.jp" ]
keiichi@mobilegravity.sfc.wide.ad.jp
5405c06ecb08157466f8bcceb728e6e86e9b7a2c
c97098b838ef5968431c716bd13f4f063412002e
/tools/misc/plugins/matlabex/work_m61/u1/EvalFVal.h
be12cb1c7f766f65165759555b278265fc2231f9
[]
no_license
hackerlank/usnap
9cc6f2969639c529cd81a4f4662e81850dd80465
2ab43c81c85ddb3d3aa23a15905d965d14710c2b
refs/heads/master
2020-06-11T00:14:53.268772
2012-10-15T09:51:46
2012-10-15T09:51:46
null
0
0
null
null
null
null
UTF-8
C
false
false
836
h
/* * MATLAB Compiler: 2.2 * Date: Wed Apr 17 09:07:45 2002 * Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on" * "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integer_for_loops:on" "-O" * "array_indexing:on" "-O" "optimize_conditionals:on" "-x" "-W" "mex" "-L" "C" * "-t" "-T" "link:mex...
[ "pub.lenik@bodz.net" ]
pub.lenik@bodz.net
0711426bb2139052e94cb349cd6d0a29e28790ce
04192d103aa82dc7d9f064624976b1ee6af523f3
/qgis/include/qgsconfig.h
674fe6fa651aac5632c4b269a0d9492ce42f7ac1
[]
no_license
lichaoenterprising/Template_QtPlugin
d4d6cd983efdb3f9d4b8c715883c54d0a7d73008
8cc932ccfe170e4bc19783bdfb35738d0191b4d7
refs/heads/master
2023-02-09T23:00:41.104328
2021-01-04T15:21:19
2021-01-04T15:21:19
325,731,335
0
0
null
null
null
null
UTF-8
C
false
false
1,801
h
// QGSCONFIG.H #ifndef QGSCONFIG_H #define QGSCONFIG_H // Version must be specified according to // <int>.<int>.<int>-<any text>. // or else upgrading old project file will not work // reliably. #define VERSION "3.4.1-Madeira" //used in vim src/core/qgis.cpp //The way below should work but it resolves ...
[ "51834877@qq.com" ]
51834877@qq.com
3de0ce52c36690a653f02220d5e3b8350839c9bc
76d406c82f413d27dbb768be9e90e49633d4dcbf
/C/assign3/Q2/main.c
45310528afcb315e21a2da8f7687497bf714ce3d
[]
no_license
gnyaneekandukuri/ncrwork2
a9c956e79fa49e6dfd3b1052daef3acb38226711
140f46ef18846ba73512e05cc4f3dcec2598cb83
refs/heads/master
2020-04-21T16:54:22.618601
2019-03-07T04:44:53
2019-03-07T04:44:53
169,717,903
0
1
null
null
null
null
UTF-8
C
false
false
677
c
#include <stdio.h> void move(int arr[],int size){ int p1= 0; int p2=(size-1); while(p1 != p2){ if(arr[p1] < 0){ p1++; } if(arr[p2] >0){ p2--; } if(arr[p1]>0 && arr[p2]<0){ int a =arr[p1]; arr[p1]=arr[p2]; ...
[ "gnyaneekandukuri97@gmail.com" ]
gnyaneekandukuri97@gmail.com
d74bed5b816c4092c142dea658cc2129b1d695c6
c7be5b45ee13d3f2bad32902f8602ee00dff13c0
/AKWF_vgsaw.h
6f98125b7eeb96cf66c3980ad4f39148087b0364
[]
no_license
DatanoiseTV/AKWF_WaveForms_1024
d38ed856416b093d3b0c0b7ef8203cd3fdf20f20
54c9d55511f007feacfac3d437e0eb1d1f214d5e
refs/heads/master
2021-01-19T22:01:48.646095
2014-07-08T12:34:35
2014-07-08T12:34:35
21,574,675
3
1
null
null
null
null
UTF-8
C
false
false
118,688
h
// Converted by AKWF2Teensy from AKWF_vgsaw_0001.wav. // AKWF2Teensy - Beerware by Datanoise.net. const int16_t AKWF_vgsaw_0001[1025] = { 557, 1200, 1733, 1986, 1995, 1894, 1756, 1599, 1550, 1836, 2568, 3538, 4358, 4765, 4787, 4640, 4528, 4509, 4536, 4550, 4550, 4549, 4551, 4551, 4549, 455...
[ "github@ext.no-route.org" ]
github@ext.no-route.org
5a852f16cf80a10bba2080d0f582a6814dc5d67e
9de0cec678bc4a3bec2b4adabef9f39ff5b4afac
/PWGCF/FEMTOSCOPY/macros/PlotTherm_r3.C
ba0690bbe186add1ebeb06a53bcc7e1a433ae531
[]
permissive
alisw/AliPhysics
91bf1bd01ab2af656a25ff10b25e618a63667d3e
5df28b2b415e78e81273b0d9bf5c1b99feda3348
refs/heads/master
2023-08-31T20:41:44.927176
2023-08-31T14:51:12
2023-08-31T14:51:12
61,661,378
129
1,150
BSD-3-Clause
2023-09-14T18:48:45
2016-06-21T19:31:29
C++
UTF-8
C
false
false
14,273
c
#include <math.h> #include <time.h> #include <stdio.h> #include <stdlib.h> #include <Riostream.h> #include <complex> #include "TObject.h" #include "TTree.h" #include "TBranch.h" #include "TLeaf.h" #include "TVector2.h" #include "TVector3.h" #include "TFile.h" #include "TString.h" #include "TF1.h" #include "TH1.h" #inc...
[ "dgangadh@f7af4fe6-9843-0410-8265-dc069ae4e863" ]
dgangadh@f7af4fe6-9843-0410-8265-dc069ae4e863
2726ee07a3c8b05c9082075fb6bcd291f31ab2a1
8f308be5b9d82bdc31746377f8a1891a8b7fc415
/Embedded_C_Tutorials/Lesson_007_Linkage/main.c~
d8aecb7b6495970fa1875674b65fed1a79f55122
[]
no_license
erenbasturk/embeddedturkey
a018f23f493c537496b018469e1ba56f86d569ab
ec36cd8734ed8414886f8faed96d7f93090da881
refs/heads/master
2020-07-26T11:12:09.478927
2016-01-06T17:47:18
2016-01-06T17:47:18
32,678,871
0
0
null
null
null
null
UTF-8
C
false
false
171
#include <stdio.h> int main() { int result = 0; result = add(10,20); printf("\n result : %d \n",result); result = sub(40,20); printf("\n result : %d \n",result); }
[ "basturkeren@gmail.com" ]
basturkeren@gmail.com
9d18c99038612c6f3746670c54fda6cc1a628120
03943c060f4a8d866cd1ce1993446cb9007d77a1
/TBD_BMS_APP/Source/USER/ExternalGpsDevice/Arch/Nvds.h
9e83b50ac38e3c4a6e42e7f0fc9950809acf8313
[]
no_license
ashaheenp/TempCode
c9419c0b256799dfd1d5578f5c958e854ebe1de0
4634b2fd7274e8d82ebe16b3d5590382d0eb6e52
refs/heads/master
2023-07-28T00:12:19.041837
2021-09-10T12:43:35
2021-09-10T12:43:35
null
0
0
null
null
null
null
UTF-8
C
false
false
1,365
h
/* * Copyright (c) 2016-2020, Immotor * * Change Logs: * Date Author Notes * 2020-08-27 Allen first version */ #ifndef __NVDS_H_ #define __NVDS_H_ #ifdef __cplusplus extern "C" { #endif #include "BSPTypeDef.h" #include "EppromMgr.h" #define EEPROM_FIRST_BYTE 0x55 #define EEPROM_LATEST...
[ "65995353+HollisCSH@users.noreply.github.com" ]
65995353+HollisCSH@users.noreply.github.com
74c6a85db82f31340ad02321362b0e3cc1018406
00f477720123f8be5c40022a4e4e05a6f2de002f
/testes/separa_palavra.c
1469c1e7a61b67bd40ccd849b43918c17b00c5fd
[]
no_license
nelsonealves/lqe
ad73dccac6c2ebcc592440c9f9035bc5df2211d8
4eeeea1a8500b6cea78f4f80781d035faffc2113
refs/heads/master
2020-04-17T03:03:57.578405
2019-03-13T04:47:08
2019-03-13T04:47:08
166,164,985
0
0
null
null
null
null
UTF-8
C
false
false
722
c
#include <stdio.h> #include <string.h> #include <stdlib.h> int pos, pos1, cont; char data_receive[256] = "Teste=ALL;"; char data1[30]; char value1[30]; void main(){ int tamanho =(int)strlen(data_receive); for(pos=0,pos1=0, cont=0; pos < tamanho; pos++){ if(data_receive[pos]==';'){ cont=0; pos1=0; continu...
[ "nelsonespindolalves@gmail.com" ]
nelsonespindolalves@gmail.com
7a19dc38aee5855e12835d00206ca1cd9da6be0a
fd2837aef61176323fb6d8eb647b20debe7995f5
/CSAPP/sa-bAbi/working/ed79815514.c
e5db8dd1fc32fb7225d166d4b4307b42e62e6d21
[]
no_license
callMeBigBen/CourseWork
b0ef17b5cfe07ba61404abd68812d2b56393db87
41d68c07f7b1411dbca7dc7d5e2efeceb9edee27
refs/heads/master
2020-04-10T08:18:21.617984
2019-05-22T05:26:38
2019-05-22T05:26:38
160,902,512
1
0
null
null
null
null
UTF-8
C
false
false
499
c
#include <stdlib.h> // Tag.OTHER int main() // Tag.OTHER { // Tag.OTHER int* entity_3; // Tag.BODY int* entity_1; // Tag.BODY entity_3 = new int(rand()); // Tag.BODY int entity_5; // Tag.BODY entit...
[ "33094628+callMeBigBen@users.noreply.github.com" ]
33094628+callMeBigBen@users.noreply.github.com
54af32220a14fb0cb4613bc6a8ca21e72f01b95e
552560743f959d084d63196ddc3beaa045937603
/test/test.c
27ce3445094e3129841d3a1f569a761db3e00698
[ "MIT" ]
permissive
fursich/alloycc
8b8399d7d272d4ef806cf044f2d11e29376ca30b
31e8a60ea48e8380b57f6e469b4fca92eeaa7c29
refs/heads/master
2022-11-25T09:33:52.676079
2020-08-03T09:31:22
2020-08-03T16:13:09
257,348,529
1
0
null
null
null
null
UTF-8
C
false
false
70,807
c
/* * test code for alloycc */ #include "include1.h" // function declarations; int printf(); int exit(); int strcmp(char *p, char *q); int memcmp(char *, char *); double add_double(double x, double y); float add_float(float x, float y); char *main_filename = __FILE__; int main_line = __LINE__; // test function int...
[ "fursich0@gmail.com" ]
fursich0@gmail.com
82b987395773c22b86c07a7e0d3b3558471b50b9
71d0691802c3dfb393dbf476e165b15e22977600
/FPTree/Integer/FPTree.c
2c89bab5d689343d7b7ee6c3b750453a687c4ce4
[]
no_license
windblow32/NECSST-data-structure
e9caff8652a548aad1810158b24fa203829b174a
3940194fcd1154e5449f2f0eb616fc41761c750c
refs/heads/master
2021-12-10T16:42:44.283484
2016-09-02T02:25:14
2016-09-02T02:25:14
null
0
0
null
null
null
null
UTF-8
C
false
false
13,101
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/time.h> #include <x86intrin.h> #include <malloc.h> #include <stdint.h> #include <time.h> #include "FPTree.h" #define mfence() asm volatile("mfence":::"memory") #define BITOP_WORD(nr) ((nr) / BITS_PER_LONG) unsigned long IN_count = 0; unsigned lo...
[ "sekwonlee90@gmail.com" ]
sekwonlee90@gmail.com
def3ad118ca9598f7d652ac9cf7306cb69ab4b36
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/linux/drivers/net/wireless/intel/iwlwifi/mvm/extr_rs.c_rs_get_column_from_rate.c
a982d6be9a1fbf8730eea147f575653a4b35e07a
[]
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,619
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
22749bdadd314f04eefa8a1928e324ba8e13d5bf
2a88a2adcf066ab1c5176e87390b468c8e696c08
/dist/cpu/efm32/families/efm32g/include/vendor/efm32g_pcnt.h
4c8537949e7b52ea6b375e610f31bc13e5135ae8
[ "MIT" ]
permissive
kaibeckmann/EFM2RIOT
c93aefb72c633e00e5727b2feb63f47e3f88a9f8
6c1abc0e83be3a566162458f475c04e7000a338b
refs/heads/master
2021-01-01T17:50:55.318734
2017-12-15T16:17:22
2017-12-15T16:17:22
98,175,194
0
0
null
2017-07-24T09:46:04
2017-07-24T09:46:04
null
UTF-8
C
false
false
25,176
h
/**************************************************************************//** * @file efm32g_pcnt.h * @brief EFM32G_PCNT register and bit field definitions * @version 5.3.3 ****************************************************************************** * # License * <b>Copyright 2017 Silicon Laboratories, Inc. h...
[ "basstottelaar@gmail.com" ]
basstottelaar@gmail.com
a777be4d3fe500ffb1a9a6272daf097d8fd924b7
a8c66aa571ba4cc2cfa8f97ecfcca672dff7747c
/test/test_vector.c
f6b198c8db4527042ac929568eda8cebed72bf01
[ "Apache-2.0" ]
permissive
IITDBGroup/PUG
1fb0e1fc6397a49b6e6da3d951148b52cda15ee8
3e0e8c83c16b7a4fb1fa00af73240f9394c97d06
refs/heads/PUG
2023-05-11T10:48:32.095247
2022-03-09T19:47:27
2022-03-09T19:47:27
117,610,734
1
1
Apache-2.0
2023-05-01T19:45:17
2018-01-16T00:33:24
C
UTF-8
C
false
false
7,392
c
/*----------------------------------------------------------------------------- * * test_vector.c * * * AUTHOR: lord_pretzel * * * *----------------------------------------------------------------------------- */ #include "test_main.h" #include "model/node/nodetype.h" #include "model/set/vector.h...
[ "lordpretzel@gmail.com" ]
lordpretzel@gmail.com
03953c0ea4f4b6944ebdca1f16a4763faf1de218
e8b541271f7746178ef3177914f4cc799ac8dcae
/resources/phase_6.c
2defe9aec07c33cec804c7b734bd7695b8228ec3
[]
no_license
maginist/boot2root-1
53c956cb26bb62f19bc3773a85b6c35a173d8997
f0eede9dc3c696a3c95ebb0f8eb45a3d2e6b687d
refs/heads/master
2023-08-15T14:43:34.290689
2021-09-21T14:39:47
2021-09-21T14:39:47
null
0
0
null
null
null
null
UTF-8
C
false
false
1,023
c
// input 6 numbers // Input number < 7 // Input number all different void phase_6(char *input) { int *piVar1; int j; int i; int tab_to_sort[6] = {253, 725, 301, 997, 212, 432}; int sorted_tab[6]; int tab[6]; read_six_numbers(input, tab); i = 0; while (i < 6) ...
[ "ma.sithis@gmail.com" ]
ma.sithis@gmail.com
48d2e342430215f18e1850e94bbbdfd9a66cec03
1577e1cf4e89584a125cffb855ca50a9654c6d55
/libdispatch/dispatch/introspection.h
464be1fe8e6df26307566da1637a631512af1ee5
[ "Apache-2.0" ]
permissive
apple-open-source/macos
a4188b5c2ef113d90281d03cd1b14e5ee52ebffb
2d2b15f13487673de33297e49f00ef94af743a9a
refs/heads/master
2023-08-01T11:03:26.870408
2023-03-27T00:00:00
2023-03-27T00:00:00
180,595,052
124
24
null
2022-12-27T14:54:09
2019-04-10T14:06:23
null
UTF-8
C
false
false
4,958
h
/* * Copyright (c) 2013 Apple Inc. All rights reserved. * * @APPLE_APACHE_LICENSE_HEADER_START@ * * 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/licenses...
[ "opensource@apple.com" ]
opensource@apple.com
234f8fa881f1fec3fe2d0e4a143fee99b4e3abe2
54f352a242a8ad6ff5516703e91da61e08d9a9e6
/Source Codes/AtCoder/abc086/B/4577040.c
4e627e62c856b30a132fa2da4df570a1a74df756
[]
no_license
Kawser-nerd/CLCDSA
5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb
aee32551795763b54acb26856ab239370cac4e75
refs/heads/master
2022-02-09T11:08:56.588303
2022-01-26T18:53:40
2022-01-26T18:53:40
211,783,197
23
9
null
null
null
null
WINDOWS-1250
C
false
false
1,206
c
// Ver19.03 #include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #define INF 1 << 29 #define LLINF 4545454545454545454 #define MOD 1000000007 #define ll long long #define ull unsigned long long #define MAX(a, b) ((a) > (b) ? (a) : (b)) #define MIN(a, b) ((a) < (b) ? (a) : (b)) int up...
[ "kwnafi@yahoo.com" ]
kwnafi@yahoo.com
0324356003efb56f9e86028e2aded8f28d58345e
54ddef0e924d14238a060ffc7fbae6668ac0d674
/ostc/os/hp/hp_getgeom.c
3ab4d484f7f085e60183424d213f3839b3099110
[]
no_license
jeffaco/msft-test
ec6f0432e83470731874ee6af568e988809911e1
b8213fcf9dba5bd4e33f2b406525ccf0bb63318a
refs/heads/master
2020-04-16T17:25:19.646199
2018-11-06T18:45:07
2018-11-06T18:45:07
50,063,731
0
0
null
null
null
null
UTF-8
C
false
false
1,656
c
#include <stdio.h> #include <fcntl.h> #include <stdlib.h> #include <sys/errno.h> #include <sys/diskio.h> #include <sys/scsi.h> void Describe_ext(int dfd) { int ret; disk_describe_type_ext_t disk_descr; uint64_t capacity; if ((ret = ioctl (dfd, DIOC_DESCRIBE_EXT, &disk_descr)) != 0) { perror("Error gettin...
[ "jeff.coffler@gmail.com" ]
jeff.coffler@gmail.com
859b68e0fae8b80389ebbc60639055c11125826b
90eeced46965eec738c9238a7fce5f4fee974e36
/izanami-common/src/memconsumer.c
2655cf164fff8a9d101e30c7da8c0fdf2f7590c6
[]
no_license
huxiyu/izanami
de7c57c33d5b804016a5d402f1edad7bc3e2cd55
ef19d4b899f2596223fa3cda62e957d3ac667aad
refs/heads/master
2020-04-07T03:19:49.677949
2018-09-24T08:24:00
2018-09-24T08:24:00
null
0
0
null
null
null
null
UTF-8
C
false
false
1,384
c
/* * memconsumer.c * * Created on: 2018年8月28日 * Author: caojx */ #include "block.h" #include "memconsumer.h" #include "mempool.h" #include <stdlib.h> void setconsumerhead(struct consumerblock *head) { memset(head, 0, getblocksize()); head->dataused = 0; head->next = NULL; } struct memconsumer *initm...
[ "ken_1994@163.com" ]
ken_1994@163.com
d2cc3b496327155b81b89ae3e66681cb93e26a4d
f3b210e31ecc47c1a922178caecf80ed2c198586
/libft/libft.h
9f6add6a11ea7eec2072dcb21c48541fbf0942e4
[]
no_license
olehsamoilenko/get_next_line
50df0b6df095aa0ab4d4226042f73d5eb30c4158
3639e19debc3da2338cae535144d42537682624a
refs/heads/master
2020-03-10T06:46:04.821324
2018-05-10T08:01:25
2018-05-10T08:01:25
129,246,126
3
0
null
null
null
null
UTF-8
C
false
false
3,961
h
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* libft.h :+: :+: :+: ...
[ "osamoile@e2r6p1.unit.ua" ]
osamoile@e2r6p1.unit.ua
1befe29a97742b1ffa739de6494b7ce185a8eb31
4fa4f3f8e6e37a6ce9db5f5acb5aa45acc65c51b
/c00/ex00/main.c
9b26a551c1bbca591040dec0552e6922cdb0e65f
[]
no_license
2LeoCode/Piscine_42
9ea3ce5b8169952940472b400705da1c0d12623c
9bcd7df800eb3b12fb94537c7e5252f292402bf2
refs/heads/master
2023-07-09T02:04:11.012208
2023-06-23T07:12:47
2023-06-23T07:12:47
244,754,042
1
0
null
null
null
null
UTF-8
C
false
false
163
c
void ft_putchar(char c); int main(void) { char i; i = 'a'; while (i <= 'z') { ft_putchar(i); i++; } return (0); }
[ "leo.13suardi@outlook.com" ]
leo.13suardi@outlook.com
6d0485aa0bf6073a290c322b8204e835486d4e03
0c238785d722afccb271306514302f835cc0b949
/hmem.c
ed5d13de559813a46ebb078773a3a456cfd2e6c8
[]
no_license
weissza/memory-allocators-
ea94e40477ea9bc7a7cf5bbbe465ec6e37b9a856
4d057107021f5d5261109022b0256ec2392a876e
refs/heads/master
2020-04-19T20:52:01.180725
2019-01-30T22:38:54
2019-01-30T22:38:54
168,426,423
0
0
null
null
null
null
UTF-8
C
false
false
5,267
c
#include <stdlib.h> #include <sys/mman.h> #include <stdio.h> #include <pthread.h> #include <string.h> #include "xmalloc.h" /* typedef struct hm_stats { long pages_mapped; long pages_unmapped; long chunks_allocated; long chunks_freed; long free_length; } hm_stats; */ typedef struct node_t{ int size; s...
[ "weiss.za@husky.neu.edu" ]
weiss.za@husky.neu.edu
04d11ea7b707dc7d98de115692c96648c9c7861f
ba89366e77c8b6664150f023d0e074b2d4008212
/Testing and Verification /Assignment 1/codes/question5b.c
19c7724e7fc54f26f942b685e52f82673055d627
[]
no_license
sarvesh-kale/Courses
3cd647c053892d64acb818618d5d1d0cf67e9b2c
e370a5d25d3c3b472ffa5ea5c49031ea933cf86e
refs/heads/main
2023-06-29T21:23:27.148202
2021-08-01T08:25:38
2021-08-01T08:25:38
391,561,030
0
0
null
null
null
null
UTF-8
C
false
false
1,698
c
/*5. Let the function f be f = (x1.x2.(~x3) + x4.x5 + (~x6).x7 + x8) b. Find the function w on x5,x6,x7,x8 which has the following property. h(x5,x6,x7,x8) = 1 if and only if for every substitution for x1,x2,x3,x4 (say x1=b1, x2=b2, x3=b3, x4=b4, where the bi's are 0 or 1) ...
[ "sarveshkale7217@gmail.com" ]
sarveshkale7217@gmail.com
2b96308336aff49910b53a69c236db58d3facb5f
3a5bfcd7b6050c45ff6540d4ef341888cfc9b76e
/src/parammd.c
70ff48aed5cc29f546f4ad8ef0ba5f3d97649754
[]
no_license
Bryan82731/GPIO_FW
7320f48b8ca03c9c981cef86e887abb27fe08065
cdfaa00d72ed6c266d80d8318bb3aa92884a4762
refs/heads/master
2021-09-08T09:17:44.146669
2018-03-09T18:34:43
2018-03-09T18:34:43
124,478,298
0
0
null
null
null
null
UTF-8
C
false
false
1,095
c
#include "parammd.h" #include "OOBMAC_COMMON.h" #include "OOBMAC.h" #include "BSP.h" /* Set the Management Data Clock high if level is one, * low if level is zero. */ /* Configure the Management Data I/O pin as an input if * "output" is zero, or an output if "output" is one. */ /* void paraport_setmdio_d...
[ "b18871986" ]
b18871986