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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7474d91708e166196a92071abed55e4358790a6c | 33a6448e047d43eeeebe36f11cec5863c4d237c9 | /FileReadWriteCharacter/main.c | f73b56c824db77ca9043f16bbc2c6f2800163b97 | [] | no_license | Qianfinland/C | fca683f4e503a63435f43d1c82d1b5704b954bcf | 00f6530d1282149b5d218e4ab4069562c145fd8e | refs/heads/master | 2021-01-10T16:08:32.115848 | 2015-08-16T19:52:21 | 2015-08-16T19:52:21 | 36,993,923 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,026 | c |
#include <stdio.h>
int main() {
FILE *file = fopen("/home/qxzhou/NetBeansProjects/daydaylearning/FileReadWriteCharacter/read.txt", "r");
if(file == NULL)
{
printf("Error on open the file !");
return 1;
}
while(1)
{
int ch = fgetc(file);
if(ch == EOF)
... | [
"qianfinland@gmail.com"
] | qianfinland@gmail.com |
a6268cf05d542102a4e024b55ddb4478cd60d8ce | e250176d7fc2d1d1ac604aa843543afe91e8843e | /chapter1/fold.c | 0e37e96d78aa3e77a5172cc49be766743550f4ba | [] | no_license | alicewriteswrongs/programminginc | 3ea2ebd1a4622856eecb1b49e8011d5fb2cc4ed8 | 69f17bfede6ccfea70677eb06c6dd76305429ca8 | refs/heads/master | 2021-08-27T15:31:10.765001 | 2015-07-14T19:53:23 | 2015-07-14T19:53:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,419 | c | #include <stdio.h>
/* this is program to 'fold' long lines onto two lines, and I think we're going to do 80
* characters/line
* */
#define MAXLINE 1000 // not going to bother with lines longer than 1000
#define OUTPUTMAXLINE 1020 // longer incase input is actually 1000 characters
#define SPLIT 79 // number of cha... | [
"alice.writes.wrongs@gmail.com"
] | alice.writes.wrongs@gmail.com |
681714c9a7576083efca3998c82af18ed07b3562 | 99166976f3e170ad5d9fb2840b1c0ade2182a2c3 | /libs/rh4n_ldaparser/src/rh4n_lda_array.c | 18cc3aecdc99a46678399d32d905ecce91675310 | [] | no_license | audacity363/natAWSWrapper | 18acda09518788ae22c78b797e65ec3e3cd0531a | e99ed02d465ba9e6a3234ac30563b00d612d4d46 | refs/heads/master | 2020-06-15T08:49:09.333579 | 2019-08-25T17:35:27 | 2019-08-25T17:35:27 | 195,252,545 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,119 | c | #include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include "rh4n.h"
#include "rh4n_ldaparser.h"
int rh4nldaGetArrayType(char *line, int *dimensions, int length[3], RH4nProperties *props, char *errorstr)
{
*dimensions= 0;
char *end_var_params = NULL, *comma = NULL,
... | [
"tom@engemann.me"
] | tom@engemann.me |
872d8f0e8f79d8d3cc847d279d797bd59b047c8a | bfb77baec8635ec547dcab598fa537785a03d3fb | /MDK-ARM/Lora.c | f4632170ad1e6ae45ecaa5aa22ab3d9fc338799b | [] | no_license | huynd98/SENSOR1_DATN | 6fd4dc6eaae9665b738c86c31dd83b432823d140 | 6faedbe233ec30f4f1c79f0368cafcbe2a9ff678 | refs/heads/main | 2023-02-13T04:16:59.856438 | 2021-01-11T15:20:07 | 2021-01-11T15:20:07 | 318,145,813 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,661 | c | #include "Lora.h"
uint8_t readRegLora_8Bit(uint8_t address){
uint8_t result=0;
HAL_GPIO_WritePin(GPIOA, LORA_NSS_Pin, GPIO_PIN_RESET);
HAL_Delay(1);
while ( HAL_SPI_Transmit(&hspi2,&address,1,100) != HAL_OK );
while ( HAL_SPI_Receive(&hspi2,&result,1,100) != HAL_OK );
HAL_GPIO_WritePin(GPIOA, LORA_NSS_Pin, GPIO_P... | [
"nguyendanghuy247@gmail.com"
] | nguyendanghuy247@gmail.com |
0a8e0289152e8c5ddde56fb7659d8c479c4582cf | e4a1f59a825748852406246ad4a0a7e58c0c756b | /code/functs.h | be49b077ece743129c59d76e88d82e6b23007194 | [] | no_license | MVour/diseaseAggregator | 19d46631f1982a407cc243431392c9f1bdc13094 | acb9b05c4d6fe73ccbc063f0d4e9132352c9e97d | refs/heads/master | 2023-02-11T03:08:55.542473 | 2021-01-15T20:48:48 | 2021-01-15T20:48:48 | 330,018,961 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 975 | h | // #include "myList.h"
#include "myHash.h"
#include "heap.h"
#include "filesStats.h"
////// FUNCTS
void printMenu();
char* act(int, hashTable*, hashTable*, infoNode*, StatsList*, char* buf);
// void act_1(hashTable*, char*, char*);
char* act_2(hashTable*, char*, char*, char*, char*);
char* act_3(StatsList* myStats, i... | [
"m.vourtzoumis@gmail.com"
] | m.vourtzoumis@gmail.com |
9b15002d5bd412d9ae808f94e24062e867912908 | 79b2d3126476fe7c997ebc5b8f0a1298b34630fd | /PROG/Sem1/Lab4/logo.h | f18a8f5846e8655b25d16b0468fe9ed466ff3075 | [] | no_license | DenisVasenin/Labs | 13ba28d4c29cbe8899cd20ac9cc1f1dbdd825659 | 4b96ea12987d2a0046f58fe8b6d36e775769233b | refs/heads/master | 2020-03-18T20:20:16.447809 | 2018-05-28T15:57:45 | 2018-05-28T15:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 646 | h | int logo()
{
puts("");
puts(" ============================");
puts(" ");
puts(" XX XX YY YY NN NN ");
puts(" XXXX YYYY NNNN NN ");
puts(" XX YY NN NN NN ");
puts(" XXXX YY NN NNNN ");
puts(" ... | [
"ps.smartbox@gmail.com"
] | ps.smartbox@gmail.com |
ff3959dcfefc32276c08841c6534ca13f08bec63 | d24750e5c892c961ebc316484e27de11774db135 | /Src/VL53l1X.c | 9130b1f3476a4024ec8ee467dd98e7873227adac | [] | no_license | MarcusCorbin1/Number12 | 3bc4f46a59bfd1f29a3ac61c214409eb43e2cdae | 0069173892eb944d12c0b6c9ee8a8dd2b52c481b | refs/heads/master | 2022-03-03T14:58:26.731493 | 2019-06-17T16:33:27 | 2019-06-17T16:33:27 | 192,381,912 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 950 | c | #include "stm32l4xx_hal.h"
#include "VL53l1X.h"
//Start the Data Initializer
void VL53L1_DataInit(I2C_HandleTypeDef i2cHandle) {
uint8_t buffer[12];
buffer[0] = 0x88;
buffer[1] = 0x00;
HAL_I2C_Master_Transmit(&i2cHandle, 0x52, buffer, 2, 100);
HAL_Delay(20);
}
//Start the Static Initializer
void VL53L1_Sta... | [
"marcus.corbin@itron.com"
] | marcus.corbin@itron.com |
726a722b8c6dcb1d128fb29aeec5b4130d327071 | 999d0cc68f04af3168b1eb5f766756b5661170f4 | /robot/第四组/舵机-STM32/USER/main.c | 555d4c36330cc649455c80a1336c946a2637e724 | [] | no_license | aestheticisma/2019 | e89e24b6fdf5e56d76af3211b97194ea01bab0e1 | 4286782e714cdcda86f8c477be2fc5a9297f49aa | refs/heads/master | 2020-06-19T19:05:32.242306 | 2019-07-14T13:34:13 | 2019-07-14T13:34:13 | 196,836,522 | 1 | 0 | null | 2019-07-14T12:55:50 | 2019-07-14T12:55:49 | null | GB18030 | C | false | false | 1,104 | c | #include "stm32f10x.h"
#include "car.h"
#include "delay.h"
#include "control.h"
#include "echo.h"
#include "infrared.h"
int main(void)
{
float a=0.0;
char len;
control_init();
SysTick_Init();//延时初始化
echo_init();
infrared_init();
//Usart1_Init();
while(1)
{ len='0';
a=(((float)Get_Adc(AD... | [
"noreply@github.com"
] | aestheticisma.noreply@github.com |
e4ca123d176646b4ad4c5e6601e1ec61881ef2b6 | eb127d545b1aa5d4f6dfe7b900613678a061ed8e | /clip/libclipmain/_util/clip_CLIP_HOSTCS.c | 68fd4dedfca7aaaf9947cfc9d259df1827c1ab7f | [] | no_license | amery/clip-angelo | a41fccb525b2fb311b2e179508b8ec50457ee7ae | 556fb1d40645d4c8fc33cda4014ab31a5b6500ea | refs/heads/master | 2020-05-05T04:12:01.911229 | 2010-12-25T10:42:00 | 2011-01-01T13:08:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 119 | c | int
clip_CLIP_HOSTCS(ClipMachine * ClipMachineMemory)
{
_clip_retc(ClipMachineMemory, _clip_hostcs);
return 0;
}
| [
"amery@geeks.cl"
] | amery@geeks.cl |
0ddad1251dcd4016b4c526efeafe716af3f5026e | ef9a2839953f3586e66c1cf824c9de199f52d088 | /mcc_generated_files/X2CCode/Library/Math/Controller/inc/Sqrt_FiP16.h | b83fa9c934f92a6452ef0773f0ae3be8fd299024 | [] | no_license | MCHP-X2Cdemos/mc_foc_sl_fip_dsPIC33ck_mclv2.x | 72f1e06eb18738796d59938474c6d533bd07bb1e | d77e18983439d895b83b6d63fdaad4c8fdb028e7 | refs/heads/master | 2023-03-20T10:54:54.157111 | 2021-03-11T22:01:12 | 2021-03-11T22:01:12 | 288,478,027 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,510 | h | /*
* Copyright (c) 2013, Linz Center of Mechatronics GmbH (LCM) http://www.lcm.at/
* All rights reserved.
*/
/*
* This file is licensed according to the BSD 3-clause license as follows:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the followi... | [
"christoph.baumgartner@microchipcom"
] | christoph.baumgartner@microchipcom |
51fbad2bfeb09528ca3cb36ba6098eb1c9816eff | 25ba673dae94a65d02989d8b72aa4ebda00b0652 | /예제9-6.c | c28ba2aeede8768fa8a3d745203496296575bb28 | [] | no_license | mykid7/C | 3c72d2414ba4a9ae889d57702468ccbfea19796a | 23d1de46d313521a53cb957014f492e3165cff17 | refs/heads/master | 2020-07-21T16:58:10.378238 | 2019-11-10T15:20:47 | 2019-11-10T15:20:47 | 206,925,648 | 0 | 0 | null | null | null | null | UHC | C | false | false | 380 | c | #include <stdio.h>
int main(void)
{
int a = 10; // 변수 선언과 초기화
int *p = &a; // 포인터 선언과 동시에 a를 가리키도록 초기화
double *pd; // double형 변수를 가리키는 포인터
pd = p; // 포인터 p 값을 포인터 pd에 대입
printf("%lf\n", *pd); // pd가 가리키는 변수의 값 출력
return 0;
} | [
"noreply@github.com"
] | mykid7.noreply@github.com |
cf438c03fe427b18d5ef0c3ee6b083cbcaf7fb89 | 2837f8a4e1c618f00ad7ba5cf4c248232ea1743b | /1012.c | 13ca81f31503b51ffd86f58d4a77bd3cf3a1fc50 | [] | no_license | jorgeduartejr/URI-online-judge---C | c56a2e887db097725694bef25ac390e9edb38b26 | d913288c68870f1058bd7fb0ce754ebc3a015ef8 | refs/heads/main | 2023-07-17T19:04:10.937097 | 2021-08-24T22:33:49 | 2021-08-24T22:33:49 | 399,618,839 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 610 | c | #include <stdio.h>
int main() {
double A,B,C;
double areaTriangulo, areaCirculo, areaTrapezio, areaQuadrado, areaRetangulo;
double pi = 3.14159;
scanf("%lf""%lf""%lf", &A,&B,&C);
areaTriangulo = (A * C)/2;
areaCirculo = C * C * pi;
areaTrapezio = ((A + B) * C)/2;
areaQuadrado = B * B;... | [
"migueljunior1000@gmail.com"
] | migueljunior1000@gmail.com |
e68b09ef487cfbc95b0472becf08661d8f918a67 | 93f2b5dc75142b5d6f5cb31e1e02f1c5aac130a0 | /srcs_lem/get_next_line1.c | 9a771719bb18a1137c4edc964beaab2d64290170 | [] | no_license | Enshertid/lem-in_school21 | d869541fb45c6c6f9d8f96bb047d489aed895b26 | 3b326ec0c41cefe4af28eb46d76817ad89612a33 | refs/heads/master | 2022-05-07T23:49:00.736557 | 2020-03-15T16:34:49 | 2020-03-15T16:34:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,150 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line1.c :+: :+: :+: ... | [
"enshertid@icloud.com"
] | enshertid@icloud.com |
25021c56cbd311feb2474cce81be4758cf5ee5d8 | 394c1965d2300d06df1a72868670397d4ac262c5 | /Libft/srcs/ft_putchar_fd.c | df6248e83b11873e2ab6dcb3898dc37e6be95fa4 | [] | no_license | lterrail/minishell | f0584386ca9f9184ab21f32ad900610ddb75f090 | a2221f74445c526eec356b672efee4640fd7aefb | refs/heads/master | 2021-07-25T16:39:30.554803 | 2020-04-30T15:55:05 | 2020-04-30T15:55:05 | 158,931,545 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 970 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar_fd.c :+: :+: :+: ... | [
"lterrail@e1r10p17.42.fr"
] | lterrail@e1r10p17.42.fr |
435d938de995c245d164b32e935ec8b55a8bc340 | bb762a49e4f5324de253d6287438899a4c645632 | /Lista9/Questao1/tadArvoreBB3.c | 9f8071a9ac77eb7d89a79a9acd91267be9385138 | [] | no_license | RaquelBelmiro/estruturas-de-dados-c | 7de2defe4ffaf1849eb5408c533658c0637a1366 | f38f6e6758a897a24e8091e773b6651f02e09a45 | refs/heads/master | 2023-08-01T07:46:45.736711 | 2021-09-21T21:42:25 | 2021-09-21T21:42:25 | 408,981,056 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,945 | c | #include<stdio.h>
#include<stdlib.h>
struct reg_no_arvore
{
struct reg_no_arvore *ptrEsquerda;
int chave;
struct reg_no_arvore *ptrDireita;
};
typedef struct reg_no_arvore **tipo_no_arvore;
tipo_no_arvore inicializar_arvore(tipo_no_arvore sub_raiz)
{
sub_raiz = (struct reg_no_arvore**)malloc(sizeof(s... | [
"raquelsilvabelmiro@gmail.com"
] | raquelsilvabelmiro@gmail.com |
00b89f8c82ebde7fba9cca6124b9592cc534c8af | a0d6b2c2dd8bcbe03e5c6fb35f766bd2af9a1d5c | /dynix.3.2.0/src/ucb/tftp/main.c | a7f804e9f48afbb7a6089aad2297032b45976d5f | [] | no_license | legacy-codedigger/Dynix.3.2.Source | 593485f234eee4de75c0e23fe689f247471c83f8 | 2789373c94bc57e4c4a915bcba354f2243e12ca4 | refs/heads/master | 2022-04-25T22:49:00.493902 | 2020-04-25T00:49:59 | 2020-04-25T00:49:59 | 258,656,640 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,184 | c |
/* $Copyright: $
* Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989, 1990
* Sequent Computer Systems, Inc. All rights reserved.
*
* This software is furnished under a license and may be used
* only in accordance with the terms of that license and with the
* inclusion of the above copyright notice. This so... | [
"zahir.meddour@protonmail.com"
] | zahir.meddour@protonmail.com |
ae6588ae9020907de235f7dc4c83350dbf925003 | 60cddbbb30ef7614070f6e1691ab9a3f0ce407e4 | /robo2-xsdk/libs/phymod/chip/falcon16/falcon16_diagnostics_dispatch.c | 12ba0238027635ff729ee0e14f43ab82c3db76e5 | [] | no_license | David-Croose/Broadcom-Compute-Connectivity-Software-robo2-xsdk | f2a1fe9a704e1a1873eac2fba02125ba7cb1570f | 25b15c851d6e8a5a70715603e4f8d8a9af8f66fe | refs/heads/master | 2022-11-27T00:00:23.553005 | 2020-08-03T07:36:34 | 2020-08-03T07:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,555 | c | /*
*
* $Id: phymod.xml,v 1.1.2.5 Broadcom SDK $
*
*
* This license is set out in https://github.com/Broadcom/Broadcom-Compute-Connectivity-Software-robo2-xsdk/master/Legal/LICENSE file.
*
* $Copyright: (c) 2020 Broadcom Inc.
* Broadcom Proprietary and Confidential. All rights reserved.$
*
... | [
"murali.policharla@broadcom.com"
] | murali.policharla@broadcom.com |
dfa01ea86a2bce6ee9052f2c25dae843b063fff3 | f99fe5e7d6b160cef405cba7775899a81ed2a5e5 | /src/cmptr3.c | f8f7532066b3e512f34a811e1517283e6b79cdc7 | [] | no_license | rajdipnayek/cslatec | 83122616f72769b36fa7b6d00b3ec988bbb35fe3 | c2a4301febfe44e2d1e0c0fa3a73ca49e44780db | refs/heads/master | 2021-01-06T16:47:40.152730 | 2015-05-01T20:03:32 | 2015-05-01T20:17:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,360 | c | /* cmptr3.f -- translated by f2c (version 12.02.01).
You must link the resulting object file with libf2c:
on Microsoft Windows system, link with libf2c.lib;
on Linux or Unix systems, link with .../path/to/libf2c.a -lm
or, if you install libf2c.a in a standard place, with -lf2c -lm
-- in that order, at the end of... | [
"rf@rufflewind.com"
] | rf@rufflewind.com |
87b393e0e37d196a9779122a7240425d0269f0da | 3c406f63a82affe48a40c6e4312ad071aebcf62e | /static/test.c | d6839978199fc1bb3d5e211d972bd5e850265b0f | [] | no_license | vivek703/OWN_EXP | d1a2c78ea69a7114088783e373660d2d39ed317e | fe0f7359693d8822b52121e07d808495f1c93e5e | refs/heads/master | 2022-05-29T13:37:09.261695 | 2020-05-04T18:23:16 | 2020-05-04T18:23:16 | 257,104,389 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 125 | c | #include "test.h"
#include <stdio.h>
static int static_1(void)
{
printf("HI\n");
}
void test(void)
{
static_1();
}
| [
"vivekp9922@gmail.com"
] | vivekp9922@gmail.com |
9f6d231ad84008b479ecfd7312376ec07fe56433 | be3167504c0e32d7708e7d13725c2dbc9232f2cb | /mame/src/mame/video/hyprduel.c | b76ea0787ef0284ca2f66abcf3b42fcc7c27a322 | [] | no_license | sysfce2/MAME-Plus-Plus-Kaillera | 83b52085dda65045d9f5e8a0b6f3977d75179e78 | 9692743849af5a808e217470abc46e813c9068a5 | refs/heads/master | 2023-08-10T06:12:47.451039 | 2016-08-01T09:44:21 | 2016-08-01T09:44:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 24,329 | c |
/* based on driver from video/metro.c by Luca Elia */
/* modified by Hau */
/***************************************************************************
-= Metro Games =-
driver by Luca Elia (l.elia@tin.it)
Note: if MAME_DEBUG is defined, pressing Z... | [
"mameppk@199a702f-54f1-4ac0-8451-560dfe28270b"
] | mameppk@199a702f-54f1-4ac0-8451-560dfe28270b |
ba1e8d10b4304a881878387964db1a02e670c5d3 | 166fba38e48ca1968348f5a6fd8c435392d619db | /jzz.c | d1576d8fbf128a1060ae1ca5dd4b9ce9d27aea4e | [] | no_license | Yuvpriya/jazz | 0925c109f2f2652ed886f4cce0c0c362ff96ba5b | 0e81454801892f6fc762f74cb15b363d8640c301 | refs/heads/master | 2021-01-01T16:53:35.835810 | 2017-07-21T12:33:36 | 2017-07-21T12:33:36 | 97,944,469 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 295 | c | #include<stdio.h>
#include<string.h>
int main()
{
char p[20],q[20],r[20],i;
scanf("%s",p);
scanf("%s",r);
scanf("%s",q);
for(i=0;i<19;i++)
{
if((p[i]==q[i])&&(q[i]==r[i]))
{
printf("%c",p[i]);
}
else
break;
}
return 0;
}
| [
"noreply@github.com"
] | Yuvpriya.noreply@github.com |
32004cd6aee41c08905cd5b705ab6f8ff0bb6507 | cdf75036c20eed12b54f9110c95588652899fa4c | /Others/atoi_2.c | 1845ab7cbe713cde67484b57a0fe4dd8bbf74bd5 | [] | no_license | M1c17/C_Programming_Language | 6ca585297ab6014a8a5a86ec1e4be8fb58f01e39 | 15c3074a7876dea9615a3d4a5dd0bb8120abf180 | refs/heads/main | 2023-03-06T05:41:51.665631 | 2021-02-07T04:41:49 | 2021-02-07T04:41:49 | 323,505,241 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 862 | c | #include <stdio.h>
#include <ctype.h>
#include <string.h>
/* atoi: convert s to integer; version 2 */
int atoi(char line[]);
int main(){
int val;
char str[10];
strcpy(str, "-93284927");
val = atoi(str);
printf("String value = %s, Int value = %d\n", str, val);
strcpy(str, "hello");
val =... | [
"pictor117@gmail.com"
] | pictor117@gmail.com |
ad6c47c43213451cd6735ee31d3b8c2cb5b854d4 | fd0137df01992ad3153ba9658e71e6c763760b7f | /Emu48/DDESERV.C | 6478426a222253dd6a1def7b7c0fb139a99e39fc | [] | no_license | tolkien/Emu48 | b22a61dc952d70f9fd93e32a9a8a95c103f96e4b | 777d5a9c399f4b2d800e8376bf2e62431bda71a0 | refs/heads/master | 2021-06-20T01:36:10.050248 | 2017-05-12T18:11:34 | 2017-05-12T18:11:34 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 4,855 | c | /*
* DdeServ.c
*
* This file is part of Emu48
*
* Copyright (C) 1998 Christoph Gießelink
*
*/
#include "pch.h"
#include "Emu48.h"
#include "io.h"
HDDEDATA CALLBACK DdeCallback(UINT iType,UINT iFmt,HCONV hConv,
HSZ hsz1,HSZ hsz2,HDDEDATA hData,
DWORD dwData1,DWORD dwData2)
{
TCHAR *ps... | [
"ryanbee@microsoft.com"
] | ryanbee@microsoft.com |
04fea91c01ee1587f19ad32ee856fa3859d09f22 | ade70089afe2f9bd496985fe67d46c5372042ab0 | /nvm/versions/node/v16.14.0/include/node/openssl/opensslv.h | afe0161c9ca2dc78a4eac5c0a5319f30e43aba74 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"CC0-1.0",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-unicode",
"Artistic-2.0",
"BSD-3-Clause",
"Zlib",
"NAIST-2003",
"ISC",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"NTP",
"LicenseRef-scancode-pub... | permissive | gn0rt0n/dotfiles | 96e37a87cec555cbfd222795466c140eb502c892 | 35f01242e7ac73a8b21b5e62398f1185102b7ee9 | refs/heads/master | 2023-02-23T03:02:35.212560 | 2023-02-19T02:53:00 | 2023-02-19T02:53:00 | 299,629,236 | 0 | 1 | null | 2022-10-16T02:07:11 | 2020-09-29T13:40:38 | C | UTF-8 | C | false | false | 4,110 | h | /*
* Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/lice... | [
"gary@odindev.com"
] | gary@odindev.com |
26393171c0093670884c0ea4829ff4beaea2848e | fda015cc078e877754e4cd5a48e970f0a1159ada | /src/sources/shared/system_support/os_specifics.h | aee560f47e775860f7a101ac20eaaa04456aeddf | [] | no_license | cran/liquidSVM | 886e0487104a434d3854120a774ebe120e1ddeae | 35b8af219f5d52df5513789793c1e5cf07d310b8 | refs/heads/master | 2020-04-06T04:12:26.063387 | 2019-09-14T17:20:02 | 2019-09-14T17:20:02 | 83,014,436 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,395 | h | // Copyright 2015, 2016, 2017 Ingo Steinwart
//
// This file is part of liquidSVM.
//
// liquidSVM is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your opt... | [
"csardi.gabor+cran@gmail.com"
] | csardi.gabor+cran@gmail.com |
4e6ed1901fc0f9319647713b68b5b6b327930a06 | 3f309b1dd9774ca1eef2c7bb7626447e6c3dbe70 | /apps/evsys/evsys_trigger/firmware/src/config/sam_l10_xpro/peripheral/clock/plib_clock.c | e3a6e5298e13415f391dd1c25b0e3d7d7fe6eb46 | [
"LicenseRef-scancode-unknown-license-reference",
"ISC",
"LicenseRef-scancode-public-domain"
] | permissive | Unitek-KL/csp | 30892ddf1375f5191173cafdfba5f098245a0ff7 | 2ac7ba59465f23959e51d2f16a5712b57b79ef5f | refs/heads/master | 2020-12-10T13:42:26.878408 | 2019-10-14T17:55:22 | 2019-10-14T17:56:20 | 233,609,402 | 0 | 0 | NOASSERTION | 2020-01-13T14:04:51 | 2020-01-13T14:04:51 | null | UTF-8 | C | false | false | 4,781 | c | /*******************************************************************************
CLOCK PLIB
Company:
Microchip Technology Inc.
File Name:
plib_clock.c
Summary:
CLOCK PLIB Implementation File.
Description:
None
*******************************************************************************/... | [
"http://support.microchip.com"
] | http://support.microchip.com |
74155732b9c958f7e75602f9329f9c20146aa7a9 | 54acb0bc5cfe18341533cf9b451757374e98f9d0 | /ProiectRetele/functions.h | 95e415efb92f5c944b170864006c8e9debcc06be | [] | no_license | balandan/Proiect-Retele | 2a13b6bb3ca917188fa2f41bab159ea47be9ccf2 | 430503bfc24a963c5577a50a18a3254c3142f217 | refs/heads/master | 2020-03-12T15:45:09.726537 | 2018-04-23T13:17:14 | 2018-04-23T13:17:14 | 130,698,324 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,566 | h | #include <stdio.h>
#include "listOfItems.h"
int typeOfUser;
int searchInServer(int descriptor,char fileName[30])
{
DIR *dir;
struct dirent *file;
dir = opendir (".");
if(dir==NULL)
{
printf("Fail to open this directory");
exit(1);
}
while( (file=readdir(dir))!=NULL )
{
if( strcmp(file->d... | [
"noreply@github.com"
] | balandan.noreply@github.com |
f8a07ef6a3923daba641e7ac3c0fd7ad2ecbfc87 | 1fabbdfd1ca9ea1b6808893e12bd907eb74de414 | /xcode/Classes/Native/AssemblyU2DCSharp_SPacket_SocketInstance_GC_SYNC_REACHEDSCENMethodDeclarations.h | cc71e70250fd75fada95620a65e6af4003c60645 | [] | 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 | 743 | h | #pragma once
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
// SPacket.SocketInstance.GC_SYNC_REACHEDSCENEHandler
struct GC_SYNC_REACHEDSCENEHandler_t2847;
// PacketDistributed
struct PacketDistributed_t2209;
// System.Void SPacket.SocketInstance.GC_SYNC_REACHEDSCENE... | [
"bu213200@gmail.com"
] | bu213200@gmail.com |
c8bd691314e2dda543aebd10b67df1d55639c9da | 598883867c454c3706ef844d5c0505c00142ba61 | /LCD/LCD.h | 8a928231dcc96aff1080d4fd704910a849aef356 | [] | no_license | ahmedelgazwy/Password-Based-Lock | 996b245047e1602b175aad5a7b1c04eb3d0e2ff7 | 337ebc6e545d25e134d972cb5ef637ad986fa650 | refs/heads/master | 2021-03-02T20:24:19.206032 | 2020-03-08T19:40:14 | 2020-03-08T19:40:14 | 245,902,521 | 0 | 0 | null | 2020-03-08T23:06:35 | 2020-03-08T23:06:35 | null | UTF-8 | C | false | false | 568 | h | #ifndef __LCD__H__
#define __LCD__H__
#include "std_types.h"
#include "IO_ports.h"
#define LCD_DATA GPIO_PORTC_DATA_R
#define LCD_DATA_DIR GPIO_PORTC_DIR_R
#define LCD_DATA_DEN GPIO_PORTC_DEN_R
#define LCD_DATA_AFSEL GPIO_PORTC_AFSEL_R
#define LCD_DATA_AMSEL GPIO_PORTC_AMSEL_R
#define LCD_DATA_PCTL GPIO_PORTC_PCTL_R... | [
"noreply@github.com"
] | ahmedelgazwy.noreply@github.com |
8b39fe097d9a0ad75f4e8e176acbcd3e9e6ce47c | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/24fbc88b-b066-449c-ae5b-a5acd378d8ab.c | 6c6cfa7dc48bd7868bbeecf6b19c39cd6bf27ae4 | [] | 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 | 217 | c | #include <stdio.h>
int main() {
int i=0;
int j=14;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = l/j;
l = k-j*i;
printf("vulnerability");
printf("%d%d\n",l,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
85535a4d92f8f2666b9a5170975b7e8728e2f10d | bd1fea86d862456a2ec9f56d57f8948456d55ee6 | /000/246/087/CWE78_OS_Command_Injection__char_listen_socket_w32_execv_13.c | 820a233fd4b7e26bdeed91be32983bf04da283ab | [] | no_license | CU-0xff/juliet-cpp | d62b8485104d8a9160f29213368324c946f38274 | d8586a217bc94cbcfeeec5d39b12d02e9c6045a2 | refs/heads/master | 2021-03-07T15:44:19.446957 | 2020-03-10T12:45:40 | 2020-03-10T12:45:40 | 246,275,244 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 6,999 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE78_OS_Command_Injection__char_listen_socket_w32_execv_13.c
Label Definition File: CWE78_OS_Command_Injection.strings.label.xml
Template File: sources-sink-13.tmpl.c
*/
/*
* @description
* CWE: 78 OS Command Injection
* BadSource: listen_socket Read data using a listen... | [
"frank@fischer.com.mt"
] | frank@fischer.com.mt |
140d8434c9645707bed4716235e4ff9dc4315eca | c9eccf85f19371a3843911c1480e761de4773722 | /src/lvgl/src/lv_misc/lv_bidi.h | f3f758b43ab14b9f6180db943b44a41d1f39df7d | [
"MIT"
] | permissive | mibus/TTGO_TWatch_Library | 7d3c04ca2358b181264ea744a1bcd8338f508d91 | bd77e6edba3baf9c5c68de4683a01b81f6b3a8b3 | refs/heads/master | 2022-11-25T03:04:40.292960 | 2020-07-25T03:15:55 | 2020-07-25T03:15:55 | 275,497,118 | 0 | 0 | MIT | 2020-06-28T03:13:55 | 2020-06-28T03:13:54 | null | UTF-8 | C | false | false | 4,064 | h | /**
* @file lv_bifi.h
*
*/
#ifndef LV_BIDI_H
#define LV_BIDI_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lv_conf_internal.h"
#include <stdbool.h>
#include <stdint.h>
/*********************
* DEFINES
**********... | [
"lewisxhe@outlook.com"
] | lewisxhe@outlook.com |
a2ee19d7d87b6949e20292b2a52ca26dc7dd75dd | 0b98befdd49f707ed1923703bcdac9740bb4d699 | /priv/codegolf/Draw the Sawtooth Alphabet.c | de85b8d2d1997998ac9bef46d8908dbbd40b99cb | [] | no_license | jbebe/all-my-projects | a957f2ae70d3ca09d49e1efc52c3cd9f6f786094 | 32a8b12b17d48c0138005eb54cb1ed9745baa737 | refs/heads/master | 2021-01-10T08:55:55.291099 | 2015-05-29T20:16:05 | 2015-05-29T20:16:05 | 35,968,468 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 884 | c | /*
A simple one today. Write the shortest program that draws
a "sawtooth alphabet" given a positive integer for the height.
You must write the name of your programming language when you come
to the letter it starts with.
For example, if your language is Python and the input is 1
the output should be:
ABCDEF... | [
"juhasz.balint.bebe@gmail.com"
] | juhasz.balint.bebe@gmail.com |
6e4b62fc82e9d7f43ce043d45c270328142a1c71 | dec6419e67295954f5c526d9631685d9d8499342 | /src/xoip_messages.c | 7d8d11f458027296451ce911469b4db64fdc59bf | [] | no_license | vassilux/xoip2 | 23029e19221f98fbb24368259ba0770541cdb8e2 | 4893d31a9dbad1fc585b515c3a371ce59f752180 | refs/heads/master | 2021-01-01T05:49:33.621313 | 2014-08-21T14:12:06 | 2014-08-21T14:12:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,909 | c | /*
* XoIP -- telephony toolkit.
*
* Copyright (C) <2014>, <vassilux>
*
* <Vassili Gontcharov> <v.gontcharov@gmail.com>
*
*/
/*! \file
*
* \brief Xoipeton application
*
* \author\verbatim <Vassili Gontcharov> <vassili.gontcharov@esifrance.net> \endverbatim
*
* This is a Xoip for development of an Asterisk... | [
"v.gontcharov@gmail.com"
] | v.gontcharov@gmail.com |
f3aba8ef613f6ee571dcd7583931e508a0734276 | 99bdb3251fecee538e0630f15f6574054dfc1468 | /bsp/lm3s8962/Libraries/driverlib/lpc.h | 15023178da16496a198e68242b6002c3aa35a2e2 | [
"Apache-2.0",
"LicenseRef-scancode-proprietary-license",
"Zlib",
"MIT",
"BSD-3-Clause",
"X11",
"BSD-4-Clause-UC",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | RT-Thread/rt-thread | 03a7c52c2aeb1b06a544143b0e803d72f47d1ece | 3602f891211904a27dcbd51e5ba72fefce7326b2 | refs/heads/master | 2023-09-01T04:10:20.295801 | 2023-08-31T16:20:55 | 2023-08-31T16:20:55 | 7,408,108 | 9,599 | 5,805 | Apache-2.0 | 2023-09-14T13:37:26 | 2013-01-02T14:49:21 | C | UTF-8 | C | false | false | 26,535 | h | //*****************************************************************************
//
// lpc.h - Prototypes for the Low Pin Count (LPC) driver.
//
// Copyright (c) 2010-2011 Texas Instruments Incorporated. All rights reserved.
// Software License Agreement
//
// Texas Instruments (TI) is supplying this software for use ... | [
"mbbill@gmail.com"
] | mbbill@gmail.com |
d982dd43d5b4af36c08a4f37e4b1553183be2623 | 65969eb320c536e360abed38cfb15c34d4b2e586 | /lee.c | 80cd25a6825242bcf6ff21022062ad706cc3e1f3 | [
"MIT"
] | permissive | essele/roLua | 39a593d19a4f520bac72dfbde18821ef095e2c5b | b492912789cac58f4a25e053773e7fc24cb26c21 | refs/heads/main | 2023-03-20T09:44:06.246069 | 2021-03-10T17:47:55 | 2021-03-10T17:47:55 | 343,067,872 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,999 | c | #include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include <lapi.h>
#include <lstate.h>
#include <lobject.h>
#include <lgc.h>
#include <stdlib.h>
#include <string.h>
#include <malloc/malloc.h>
#include <lstring.h>
static void *lee_alloc (void *ud, void *ptr, size_t osize, size_t nsize) {
static size_... | [
"lee.essen@nowonline.co.uk"
] | lee.essen@nowonline.co.uk |
d72ff3d4ec3ada9988c95d4136098e7c4acf8f6a | 3d18a6d10c097db154f96107079e025170442541 | /FinalProject/Sources/led_thread.c | a7b4ec20bc74f7eea8f9dc84a9734599a6c33641 | [] | no_license | Snazzythat/ecse69_final_project | cc0a7cb9e23fb28c7c837048382b3a597e931815 | 807a0c53c570a916ca75215b5f166f9009b7c596 | refs/heads/master | 2020-06-19T17:17:46.620430 | 2016-12-01T04:47:32 | 2016-12-01T04:47:32 | 74,845,506 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,113 | c | ////////////////////////////////////////////////////////////////////////////////
// File Name : led_thread.c
// Description : program entry
// Author : Team 12
// Date : Nov 1st, 2016
////////////////////////////////////////////////////////////////////////////////
// Includes
#include "main.h"
... | [
"yinghan307@gmail.com"
] | yinghan307@gmail.com |
c6c3bdfecdb996c5a631181b252045ec0128fe41 | d317c415b8eda9b2f3d2723e52a669daabc4bb7c | /test/bi_test1.c | 9b80d601d8f5a5fadb4187d23c6c5b366869c4d4 | [] | no_license | liuguangxi/pe | 73fcf8c3ed0d0af2bc6a2555ed7a7561d91565d6 | 0a1ff3535dbef5856fda3f916011eb3c720c9b2a | refs/heads/master | 2022-12-17T07:49:49.424409 | 2020-09-23T18:23:22 | 2020-09-23T18:23:22 | 298,725,253 | 1 | 0 | null | 2020-09-26T02:55:36 | 2020-09-26T02:55:35 | null | UTF-8 | C | false | false | 4,305 | c | #include "pe_test.h"
namespace bi_test {
SL void bi_test_small() {
for (int i = -100; i <= 100; ++i)
for (int j = -100; j <= 100; ++j) {
bi a(i), b(j);
assert(i + j == a + b);
assert(i - j == a - b);
assert(i * j == a * b);
if (j != 0) {
assert(i / j == a / b);
... | [
"bailiangsky@gmail.com"
] | bailiangsky@gmail.com |
26f23f68c2d65c91dbf7731ee589f62a41d27d8a | 7da6ed1e31f4dd92d923cc867f21b33a74e0ebc1 | /src/createregion.c | 4743ff3cf0a3b2c59883d6f6f024f8bc1946adb9 | [] | no_license | freudshow/practice | 2f672a460ea9d61135b6ac26919fdd3d9fab5224 | 6801ea586c5db2f30a268040f3390e303cf0fb89 | refs/heads/master | 2021-07-05T00:47:14.143021 | 2021-06-09T06:03:17 | 2021-06-09T06:03:17 | 90,633,429 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 159 | c | #include "shm.h"
int rand(void);
int rand_r(unsigned int *seedp);
void srand(unsigned int seed);
int main()
{
init_sem_set();
init_region();
exit(0);
}
| [
"s_baoshan@163.com"
] | s_baoshan@163.com |
5615d1cc69744580b5bcb0019a2a5f34931c71ba | 17c87e23e01e074c684619ff0e56706b407f0b23 | /omi-1.0.8/pal/sem.h | 37bac3318770a130e9e15e9e1786f23beaf6769d | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | HuaweiSwitch/OMI | 8856be28d0dbe22650dc70635e2749a908802c7d | bca42b3388f0e97d21fd1e872a949fa4032adbff | refs/heads/master | 2021-01-10T17:51:50.818745 | 2016-03-31T09:15:47 | 2016-03-31T09:16:07 | 55,116,218 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 4,975 | h | /*
**==============================================================================
**
** Open Management Infrastructure (OMI)
**
** Copyright (c) Microsoft Corporation
**
** Licensed under the Apache License, Version 2.0 (the "License"); you may not
** use this file except in compliance with the License. You may obt... | [
"mao58398297"
] | mao58398297 |
6e142e946a8eea810bceb15f7ada544ab9931cb0 | 6ef6213d2fa39d1d0ab7e2373d882b9d263e8c6d | /ti_components/algorithms/vlib_c66x_3_3_2_0/packages/ti/vlib/src/VLIB_ORB_computeOrientation/VLIB_ORB_computeOrientation_cn.h | b894dbc58a0b2a4caf5af6d8c2a4c550a38628ff | [] | no_license | Zhangh2018/PROCESSOR_SDK_VISION_03_06_00_00 | 9c380d3167b156a11a8f21814e94ac5550cddc87 | 05c72de5d031006c7565d4234abd53670a926acd | refs/heads/master | 2021-10-16T13:43:05.313842 | 2019-02-11T09:10:44 | 2019-02-11T09:10:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,069 | h | /*******************************************************************************
**+--------------------------------------------------------------------------+**
**| **** |**
**| **** ... | [
"yukichen@otobrite.com"
] | yukichen@otobrite.com |
b9311b53de5dc8ddfc8a8845a13274fc158e332a | 263589b8c63adc45a5dcecf5ba7178a0f40a8646 | /samd21a/include/component/dsu.h | 7a51d9b738c4439d7a787fd8ff031b5446822a17 | [] | no_license | joaofl/xdense-cortexm1 | c6b1f181305726c951e352eccb4b50c0f4a7d994 | 224e9aae27f39692dd98a5c10057b32b9958792a | refs/heads/main | 2023-03-14T21:23:42.979509 | 2021-02-28T14:58:28 | 2021-02-28T14:58:28 | 343,129,986 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 34,693 | h | /**
* \file
*
* \brief Component description for DSU
*
* Copyright (c) 2016 Atmel Corporation,
* a wholly owned subsidiary of Microchip Technology Inc.
*
* \asf_license_start
*
* \page License
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not ... | [
"joaofl@gmail.com"
] | joaofl@gmail.com |
37c89afb473fb1f0e71c3f743b0cc646712c4985 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/0f76e37c-5ba9-431e-acb0-97747e28c6bb.c | d70ff0058833ce6c0df966372d79fbd154c48354 | [] | 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 | 558 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=4;
int j=13;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = j/j;
l = l/j;
l = l%j;
l = l-j;
k = k-k*i;
//variables
/* START VULNERABILITY */
int a;
int b[28];
int c[67];
a = 0;
while (... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
a1b8d8d5a8d534f5036d1317146a33be2f883120 | 6c81d3c09d881042ddf8efa1eedf3a218c8ebd0e | /hw2/cread_alt.c | d0a5e87d1a5b6b7c765141b99807b7be064cb899 | [] | no_license | elihan27/CS-33-2 | 99d3a1225c699e35dfe5ba4a48e753af9d04b3b5 | 3742d399707c24f829c078b70b37a4fe33fa6895 | refs/heads/master | 2020-04-04T01:13:08.347058 | 2018-11-01T06:41:57 | 2018-11-01T06:41:57 | 155,673,084 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 403 | c | //
// main.c
// hw2test
// Elizabeth Han 004815046
#include <stdio.h>
//compiled using -O1
long cread(long *xp)
{
long zero = 0;
long* ZERO = &zero;
return *(xp ? xp : ZERO);
}
/*int main(void) {
long x = 3;
long *y = &x;
long z = cread(y);
printf("%li \n", z);
long *a... | [
"ehan2016@gmail.com"
] | ehan2016@gmail.com |
db61a73a94750946a32fa8812887d06c1a30a7e4 | 75859787b3eb1fc054b5df82c26bc261421d47e0 | /3rdparty/genFiles/RSRP-RangeSL-r12.c | 1037dd467dcedec3ad2ad30aa7e7b0c275e4af33 | [] | no_license | aa7133/RRC | e118b3d769abff4b0b42d7511530f7b1cc29d09e | 955c1ceadebf97d21306f3c083b5f38a24838da4 | refs/heads/master | 2020-12-10T10:45:56.892861 | 2020-01-26T13:02:20 | 2020-01-26T13:02:20 | 233,563,734 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,767 | c | /*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "EUTRA-RRC-Definitions"
* found in "../asnFiles/36331-f60-ASNfunctions.asn"
* `asn1c -fcompound-names -findirect-choice -fincludes-quoted -fno-include-deps -gen-PER -no-gen-OER -D.`
*/
#include "RSRP-RangeSL-r12.h"
int
RSRP_RangeSL_r... | [
"aa7133@att.com"
] | aa7133@att.com |
893decf8ba48e6305f30481b764a81a7f50abb3d | 97aa398e9b1d7c70c25a350e8fbaf12e22fb44c8 | /hw3-scheduling-simulation-bba753951/resource.c | 800a9dd21d9018f7a5da56ce5ec363337718be85 | [] | no_license | bba753951/OS_HW | 7510d7d9d561231d563ca453c3d020bee067175c | e55d70c8d90c36d0b4d1543fa8a5189e36280262 | refs/heads/master | 2022-04-15T09:59:16.979744 | 2020-04-16T14:13:32 | 2020-04-16T14:13:32 | 256,234,495 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,142 | c | #include "resource.h"
#include <stdio.h>
#include <stdlib.h>
// #include "scheduling_simulator.h"
#include "priorityq.h"
#include <ucontext.h>
#include "config.h"
#include "task_set.h"
#include "task.h"
task_priority_type cur[TASKS_COUNT]= {0};
// int btn[TASKS_COUNT]={0};
task_const_type val1=
{
TASK_idle_task,... | [
"bba753951@gmail.com"
] | bba753951@gmail.com |
9f2645903d93c6b9e39fbc1e9b4094496f66a432 | acd52f69773265a8e46f1c07f5868cdb29b49fdd | /C/15-04/10.h | ab55daa8624b6038666f300686e00f2f0bbab40d | [
"Unlicense"
] | permissive | Numb4r/LPCI | 0ebac7d2586c6e55f267aafc9da1b8499285a862 | 2959863bba81ae67b90c1067f73d039f5fc89e68 | refs/heads/master | 2020-04-27T18:00:45.747735 | 2019-08-24T02:53:50 | 2019-08-24T02:53:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 140 | h | int perimetro_retangulo(int lado1,int lado2){
return(2*lado1+2*lado2);
}
int area_retangulo(int lado1,int lado2){
return lado1*lado2;
}
| [
"yuri.d.d.faria@gmail.com"
] | yuri.d.d.faria@gmail.com |
bee3fbe40b500248a0d3776f479bccca9dcf948f | 1906c0d69e73d40a450005869e3ac2205381f864 | /DUMP/PRO_PlayerCharacter_classes.h | 6376c3c39dcb406b7c0ec1d0ae38ca950ef2d954 | [] | no_license | xkp95175333/Prospect-Win64-Shipping | cad4b698cb50e48093285e1bf9eedef31ca69918 | b3d14230402186be14254a0fdae9ac2fae056fb1 | refs/heads/main | 2023-09-02T20:23:54.236050 | 2021-10-26T17:22:34 | 2021-10-26T17:22:34 | 421,519,697 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,266 | h | // BlueprintGeneratedClass PRO_PlayerCharacter.PRO_PlayerCharacter_C
// Size: 0x8bc (Inherited: 0x6e0)
struct APRO_PlayerCharacter_C : AYPlayerCharacter {
struct FPointerToUberGraphFrame UberGraphFrame; // 0x6e0(0x08)
struct UPlayerDBNOComponent_BP_C* PlayerDBNOComponent_BP; // 0x6e8(0x08)
struct UPlayer_InventoryAu... | [
"68745798+xkp95175333@users.noreply.github.com"
] | 68745798+xkp95175333@users.noreply.github.com |
8287a754ebf817ff095a5f39f9d02ec7ff6d239c | c21f66903f03b92c7de9afb75064cb8d42e4c8c5 | /Computer Networks Lab: CS15206/Pattern/client.c | 371f2a53cbbb37361d69eb0391e5e687d5b4d8c2 | [] | no_license | vivek2188/Study | fa1f001eb9fffc6591310d2c6c801ea4e214f1c8 | eae76f8046d59baba68783b3bf3ae276ac6ee412 | refs/heads/master | 2022-12-15T10:10:57.604309 | 2019-07-05T23:12:33 | 2019-07-05T23:12:33 | 130,736,284 | 0 | 1 | null | 2022-12-07T23:29:54 | 2018-04-23T18:00:03 | Jupyter Notebook | UTF-8 | C | false | false | 1,100 | c | // Client side code
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
int main(void){
int csock;
unsigned int len;
struct sockaddr_in client;
csock = socket(AF_INET,SOCK_S... | [
"tiwarivivekraj17@gmail.com"
] | tiwarivivekraj17@gmail.com |
c1b8130916ad3188a3fee34f100a534319c4aebe | 5dcae792e2f7fc47aec0b03943a07505c8fd44f7 | /Go/5in1row/Menu.h | d82d958b79954a718595c6bda276bcfb025ad414 | [
"MIT"
] | permissive | Sean-sheep/c2019 | 35ad7ddd56ba426ff609dfaacec96390a5066746 | ff8031280bfa9ef12121dc576a969fff0295ec5b | refs/heads/master | 2020-04-25T20:04:24.882542 | 2019-06-14T05:32:04 | 2019-06-14T05:32:04 | 173,042,337 | 0 | 0 | null | 2019-02-28T04:43:16 | 2019-02-28T04:43:16 | null | UTF-8 | C | false | false | 554 | h | #if !defined(_Menu_H)
#define Menu_H
#include "AI.h"
#include "Win.h"
// #include "Test.h"
#include "Const.h"
#include "Cover.h"
#include "PrintAndChange.h"
#include <time.h>
#include <conio.h>
#include <windows.h>
boolean TwoPlayer(unsigned char board[][_Length], int turn, boolean win, struct Location loc, unsigned... | [
"1296997118@qq.com"
] | 1296997118@qq.com |
1894214a6f22b1cba984c233f2199ca1cbab8f7d | ab9d533323fedd5f2207f37799361c8f898f4801 | /SourceCode/C/day081.c | d61e4f0f8b381e396615471f15e9959e43a80720 | [] | no_license | siralomarahmed/100DaysOfCode | f5165de3ca8dceed971af49d27fb148a24b247b8 | 052976baf7851ba561901064c43a0477bbcce642 | refs/heads/master | 2020-07-27T13:16:29.719583 | 2020-06-09T12:39:43 | 2020-06-09T12:39:43 | 209,101,987 | 0 | 4 | null | null | null | null | UTF-8 | C | false | false | 635 | c | /* Author: Ahmed A. M. ALOMAR
Date: March 21 - 2020
Description:
This program is an example of a program that is going to display value and addresses of pointer. */
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
int main(void)
{
int variable_name = 150;
int *pointer_name = NULL;
pointer_name = &va... | [
"ahmedamalomar@hotmail.com"
] | ahmedamalomar@hotmail.com |
add120d8f2e1eda49b0065e6f0ff8ce705bae703 | 0e69e11163419b8ab50c60a9e4156034ed377365 | /Graphs/bfs.c | 11058ad1f139fc3501d377d3d03532e9c81d4694 | [] | no_license | CodHeK/BaseCodes | c8ad9ab27a7f3cdf7bdecc169c6e5bea9bbc7cf3 | db9087f6b8190b6b3542962791917d61ca8a79eb | refs/heads/master | 2021-01-01T13:35:46.522868 | 2018-06-08T07:29:01 | 2018-06-08T07:29:01 | 97,582,587 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 273 | c | void bfs(int v) {
insert(v);
state[v] = waiting
while(!not_empty()) {
delete(v);
print(v);
state[v] = visited;
for(j=0;j<n;j++) {
if(state[j] == initial && graph[v][j] == 1) {
insert(j);
state[j] = waiting;
}
}
}
}
| [
"gaganganapathyas@yahoo.in"
] | gaganganapathyas@yahoo.in |
d305f8e3495d17acdb8e910a22552b1d76159128 | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE590_Free_Memory_Not_on_Heap/s04/CWE590_Free_Memory_Not_on_Heap__free_char_static_68b.c | f9b7cb5453042e0b67db1519f0341e5cae74e82a | [] | 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 | 1,575 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE590_Free_Memory_Not_on_Heap__free_char_static_68b.c
Label Definition File: CWE590_Free_Memory_Not_on_Heap__free.label.xml
Template File: sources-sink-68b.tmpl.c
*/
/*
* @description
* CWE: 590 Free Memory Not on Heap
* BadSource: static Data buffer is declared... | [
"yzhang0701@gmail.com"
] | yzhang0701@gmail.com |
3794c2c92e553b27a530f0276dbe213eb9ec7733 | 0fedaa9e1fd650888f12dd49ef34ead7785ea643 | /SRC/applications/BSP_Init.c | 8bf3b4e126ea2b81761313a7f54d184b409fa5af | [] | no_license | leomoons/FC_ANO | e6f0ce30289981f7af30ed101d79159bbba7d1de | 5207dd2d8eaabe96b9a4cb1be7944ed2a5fdf8cc | refs/heads/main | 2023-04-01T04:13:02.185196 | 2021-04-07T06:02:50 | 2021-04-07T06:02:50 | 324,680,992 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,252 | c | /******************** (C) COPYRIGHT 2017 ANO Tech ********************************
* 作者 :匿名科创
* 官网 :www.anotc.com
* 淘宝 :anotc.taobao.com
* 技术Q群 :190169595
* 描述 :飞控初始化
**********************************************************************************/
#include "include.h"
#include "Drv... | [
"liyuanhao@zju.edu.cn"
] | liyuanhao@zju.edu.cn |
6492c0a493cd5dac7cdc841ccd7b36ea2bd73af5 | 58dec800343af173deaa707a858526bbf4cc2570 | /src/create_dir_wrappers.c | a72fa363b1e11c9cd4c28ed2a015837c360ecc3a | [] | no_license | JustusAdam/idris-posix | ed9f36bdecd0e010b5b20976d90ce07b3bd58e88 | d4d8e917b5feb7c23a877e404343df7d72b714bc | refs/heads/master | 2021-08-14T20:13:14.334384 | 2017-11-16T17:32:29 | 2017-11-16T17:35:26 | 110,988,221 | 0 | 0 | null | 2017-11-16T15:27:13 | 2017-11-16T15:27:12 | null | UTF-8 | C | false | false | 242 | c | #include <sys/stat.h>
int idris_create_dir(const char* filename) {
// For now we simply assign all the permissions
// More fine grained control may be subject of future work
return mkdir(filename, S_IRWXO | S_IRWXG | S_IRWXU);
}
| [
"dev@justus.science"
] | dev@justus.science |
61a880f4c33d12d813d8f2407ff0039d09d25584 | a65ebc49769ef9cb0f670a0e233349dd37b8f75d | /ADC.h | 4af4c109d8b62d5ebb12339c2923cdb70303d92c | [] | no_license | willisoa/Sound_Visualizer | a984ada2d74608f22dcafd3bf21ef2dd591d1bbc | e4a4403ae7a8222823ee9548b535327b431faba7 | refs/heads/master | 2020-03-21T06:20:19.835033 | 2018-07-05T21:48:21 | 2018-07-05T21:48:21 | 138,213,216 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 211 | h | /*
* ADC.h
*
* Created on: Jun 21, 2018
* Author: willi
*/
#ifndef ADC_H_
#define ADC_H_
void ADC_Init(void);
int ADC_ResultReady();
void ADC_ResultRead();
int ADC_GetResult();
#endif /* ADC_H_ */
| [
"willisoa@mail.gvsu.edu"
] | willisoa@mail.gvsu.edu |
cb5d342c2720de427b01970d97981f1231b257a8 | f27e3cb90a6bb97c48b92b626fcc2825871d91a7 | /0000_base_learn/linux-sys.zh.pdf_learn/process/013_init_daemon/test.c | fe90b4dacf113cdd3e4f2b17e291a59585db4280 | [] | no_license | flxshujie799056897/jiuyinzhenjing | 0ecf161f9a7f6df86c78a69a60f5c9b8f5134798 | caedf00ba6c80cb38996da2bae72d60597e0c202 | refs/heads/master | 2022-01-12T06:50:27.759963 | 2019-05-27T13:55:10 | 2019-05-27T13:55:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,209 | c | #include<stdio.h>
#include<stdlib.h>
#include<pthread.h>
int init_daemon(void){
pid_t pid;
umask(0);//4 /* clear file mode creation mask */
/* parent exits , child continues */
if((pid = fork()) < 0){//1
printf("error fork()");
return -1;
}
else if(pid != 0){
printf("error != 0");//正确的分支
exit(0);
}
sets... | [
"847479962@qq.com"
] | 847479962@qq.com |
326c8aca73d729ed1466243b8b049e01d6d375c6 | 5bc04daeef5284871264a7446aadf7552ec0d195 | /lib/percy/cryptominisat/src/sql_tablestructure.h | 43bee8b2e5e0a707451d4e35dae57ac2c593563b | [
"MIT",
"GPL-1.0-or-later",
"GPL-2.0-only"
] | permissive | Ace-Ma/LSOracle | a8fd7efe8927f8154ea37407bac727e409098ed5 | 6e940906303ef6c2c6b96352f44206567fdd50d3 | refs/heads/master | 2020-07-23T15:36:18.224385 | 2019-08-16T15:58:33 | 2019-08-16T15:58:33 | 207,612,130 | 0 | 0 | MIT | 2019-09-10T16:42:43 | 2019-09-10T16:42:43 | null | UTF-8 | C | false | false | 1,436 | h | /*************************************************************
MiniSat --- Copyright (c) 2003-2006, Niklas Een, Niklas Sorensson
CryptoMiniSat --- Copyright (c) 2014, Mate Soos
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "S... | [
"u1219556@lnissrv4.eng.utah.edu"
] | u1219556@lnissrv4.eng.utah.edu |
65f77212d5e067076dfaccd169a3fafdd1fc7751 | b2a07c363daa20974a7822cf04ed8aa2499cf5f7 | /I2S—录音与回放/User/i2c/i2c.c | 36e64b6a5b861c26efb27782fae85890bb45e754 | [] | no_license | capsper1/ebf_stm32h743_tiaozhanzhe_code | 5e77be0bb726936a3b71a740177cd91735d5bfa8 | a1d644ff1be4601571fb60f4fb33480c59013ff4 | refs/heads/master | 2022-09-27T01:35:49.281049 | 2020-06-06T03:53:51 | 2020-06-06T03:53:51 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 5,144 | c | /**
******************************************************************************
* @file i2c.c
* @author fire
* @version V1.0
* @date 2015-xx-xx
* @brief i2c 总线驱动,方便与各种I2C传感器通讯。
******************************************************************************
* @attention
*
* 实验平台:... | [
"18575131670@163.com"
] | 18575131670@163.com |
1edfe833fd0bfe1b868357e8047416fde0d34d03 | 02e2f32edb8df4013061776c12c50292e85e8a6e | /src/nucleus/ft_cut_copy.c | 386fcdde3a453c2771f7d552f6553dba1468a029 | [] | no_license | pankratdodo/21sh | 1de930ab2257999b214784ec3832c1c87d7df8bd | a61d1910b36f8589d06f73390b1abf844a6e4a79 | refs/heads/master | 2022-11-09T13:41:58.292914 | 2020-06-23T13:11:28 | 2020-06-23T13:11:28 | 224,352,247 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,510 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_cut_copy.c :+: :+: :+: ... | [
"plettie@mi-q5.21-school.ru"
] | plettie@mi-q5.21-school.ru |
5a9a6abf3f12aac6293cecd1950d52e4a9480edd | d8cec3d9496ed5b108e2b354abbf9601ed5f0b2a | /binary_search.c | 4c7956d70b8410403e00c3db928bd0bb0b474ed8 | [] | no_license | yehyun3459/algorithm | 214282f4d42d9199917598ab46569437e93d0a3a | 838135877f8df0ab04d9db4621a7734fbea8da7a | refs/heads/master | 2021-08-07T02:07:04.960216 | 2020-05-14T11:10:02 | 2020-05-14T11:10:02 | 175,613,922 | 0 | 0 | null | null | null | null | UHC | C | false | false | 739 | c | #include <stdio.h>
#define ARR_LEN 10
int binarySearch(int *arr,int key)
{
int r_index = -99;
int start = 0, end = ARR_LEN - 1;
while(1)
{
int mid = (start + end) / 2;
if (arr[mid] == key) return mid;
else if (arr[mid] > key)end = mid;
else start = mid + 1;
if (start == end&&arr[start] != key)break;
... | [
"yehyun3459@naver.com"
] | yehyun3459@naver.com |
756494c91046b7f91a149beca515f3a98db926e5 | 3ed978164e91956cb360f9916070ada31bf80e27 | /srcs/glob/glob_tablejoin.c | 0875e35e4219eebadd0a35d58a9da7420b49d654 | [] | no_license | jguyet/42sh | 54613a115d2b2afb96a1bb8355bdb069635ccd7b | 4339fb44fa4cbad9789ddc7e6361ea70302c9cd6 | refs/heads/master | 2021-06-14T03:53:14.067107 | 2017-02-16T04:23:57 | 2017-02-16T04:23:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,393 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* glob_tablejoin.c :+: :+: :+: ... | [
"jguyet@e3r1p12.42.fr"
] | jguyet@e3r1p12.42.fr |
422ad3573de9a5cfe1d70016e2b6da72fc0382d3 | e37c46a141827d831c6868b9677bba95de1e34bb | /bareMetal/dijk15x15/dijkstra_155.c | 75d1d99d3e7a2de37b4f68662e23f490d1957f70 | [] | no_license | guimadalozzo/OVP-MPSoC-NoC | 0eb24342c18b6513ac920c8c44deb15d6be11443 | 8842cf92068ef64165efe1061e263a6c2e846f52 | refs/heads/master | 2020-04-01T18:48:49.032309 | 2018-10-31T19:41:03 | 2018-10-31T19:41:03 | 153,516,330 | 0 | 2 | null | 2018-12-05T19:04:22 | 2018-10-17T20:02:29 | C | UTF-8 | C | false | false | 3,979 | c | #include <stdlib.h>
#include <stdio.h>
#include "MPIe.h"
#include "tasks_comm.h"
#define NONE 9999 //Maximum
#define MAXPROCESSORS 64 //The amount of processor
#define NUM_NODES 16 //16 for small input; 160 for large input; 30 for medium input;
int rank = 155;
struct _N... | [
"guimadalozzo@gmail.com"
] | guimadalozzo@gmail.com |
cabba92ee5f892439dace63414b4d8fc09133bc1 | c40a385d7ede8cb17667ae3e3d4b8b48bab49601 | /Core/Src/gpio.c | 3710d570953287c85dd33c482aa0678282fd8be0 | [] | no_license | kubot080301/stm32_test | 17c537b6404fcd3f747308ddf550b831c945d0ee | 1241187af2e24cf3716f4df4aed3be01c551f6a5 | refs/heads/HAL_LED | 2023-03-09T19:46:19.683430 | 2021-02-20T03:22:25 | 2021-02-20T03:22:25 | 340,530,766 | 0 | 0 | null | 2021-02-20T06:27:15 | 2021-02-20T01:19:18 | Makefile | UTF-8 | C | false | false | 2,002 | c | /**
******************************************************************************
* @file gpio.c
* @brief This file provides code for the configuration
* of all used GPIO pins.
******************************************************************************
* @attention
*
* <h2><center>&cop... | [
"70013856+kubot080301@users.noreply.github.com"
] | 70013856+kubot080301@users.noreply.github.com |
1415cd4451df6fa9dadff59056ffdf148cfc4b74 | 8b0b44281662be6f0b4b8d2c952f2bf56382bc27 | /05-structures/02-arrays-of-structures/main.c | d912107c8a18cd784b5e6161abb2d946aa0d4f6b | [] | no_license | Misael1998/learning-c | 42f4530fb9482600427448947fd040b817cec809 | 134b407d2b633013d26f4653f79e93b600ebb860 | refs/heads/main | 2023-03-24T06:45:58.133279 | 2021-03-22T22:15:26 | 2021-03-22T22:15:26 | 332,300,803 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,225 | c | #include <stdio.h>
#include <ctype.h>
#include <string.h>
#define MAXWORD 100
struct key {
char *word;
int count;
} keytab[] = {
"auto", 0,
"break", 0,
"case", 0,
"char", 0,
"const", 0,
"continue", 0,
"default", 0,
/* ... */
"unsigned", 0,
"void", 0,
"volatile", 0,
"while", 0
};
/* NKEYS:... | [
"misalande@gmail.com"
] | misalande@gmail.com |
ef97a41500a17f4ce43d67ba9e7f8dd2f8a1ecea | 9d305211900776052b21bd203d7f94c815f3d19d | /proc.c | fe7914b839816112a787cbec60f1d2d233fb0886 | [
"MIT"
] | permissive | iDarkknight/COL331_XV6 | c5b6ed69ceea0887cc30e5fafad47c24e7ba6959 | ab041fb7fa40653e300e02404f7bf894b43e3990 | refs/heads/master | 2021-04-29T23:09:22.588734 | 2018-02-14T19:02:42 | 2018-02-14T19:02:42 | 121,548,849 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,026 | c | #include "types.h"
#include "defs.h"
#include "param.h"
#include "memlayout.h"
#include "mmu.h"
#include "x86.h"
#include "proc.h"
#include "spinlock.h"
struct {
struct spinlock lock;
struct proc proc[NPROC];
} ptable;
static struct proc *initproc;
int nextpid = 1;
extern void forkret(void);
extern void trapret(... | [
"sourabh.basuthkar@gmail.com"
] | sourabh.basuthkar@gmail.com |
fee1c68f2e08a73c2017443c5c186d5dda913fdc | c8cd04999cc0d98a2c790d4b08bfd26f00f10d8e | /src/cbase/error.c | 1a512f562303e7e3f0a85d6b273c350e5ae01945 | [] | no_license | jbrubake/smpsim | ec6faa4a0034ae0c1e942f8ee3c82c411c5881a7 | d4a1435122e762f0c94294756491506cb45b0d23 | refs/heads/master | 2023-07-18T13:18:17.618360 | 2021-08-27T04:09:56 | 2021-08-27T04:09:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,760 | c | /*-------------------------------------------------------------------------\
| error.c |
| |
| This file is part of libcbase |
| ... | [
"jbru362@gmail.com"
] | jbru362@gmail.com |
db78316e94c58b7370f94241359ef1b2feb55a55 | 63b4a698bc22fd54857c8fa097b1331f79c39e5a | /src/uclibc/uClibc-0.9.33.2/test/stat/stat.c | 4980cdd78b33640d2c2c7de15afd9cea13884d15 | [
"LGPL-2.1-only",
"LGPL-2.1-or-later",
"LicenseRef-scancode-other-permissive",
"Apache-2.0"
] | permissive | MinimSecure/unum-sdk | 67e04e2b230f9afb3ae328501a16afa4b94cdac6 | 30c63f0eccddba39a760671a831be3602842f3f4 | refs/heads/master | 2023-07-13T07:33:43.078672 | 2023-07-07T13:52:05 | 2023-07-07T13:52:05 | 143,209,329 | 33 | 22 | Apache-2.0 | 2021-03-05T22:56:59 | 2018-08-01T21:13:43 | C | UTF-8 | C | false | false | 1,786 | c | #include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>
static void print_struct_stat(char *msg, struct stat *s)
{
printf("%s\n", msg);
/* The casts are because glibc thinks it's cool */
printf("device : 0x%llx\n",(long long)s->st_dev);
... | [
"denis.bakin@minim.co"
] | denis.bakin@minim.co |
df2572158eaf64e3e635be18d04e26bcf6d5306c | 9ef7736ef3efb7c801208fc9d5de8c3b74e75362 | /src/ds1963s-emulator-yaml.c | f5b847f4d6cf2968745062bde3bc685505c9e1fb | [] | no_license | rhuizer/ds1963s-utils | dc7567811bfc92dabcf5b55dedbb86fa4a860dc5 | 29eaff8a9b6390139427253c9203cf7cd960a93f | refs/heads/master | 2022-11-24T10:31:57.741170 | 2022-11-15T10:13:29 | 2022-11-15T10:13:29 | 5,484,318 | 7 | 1 | null | null | null | null | UTF-8 | C | false | false | 15,688 | c | /* ds1963s-emulator-yaml.c
*
* Parse a yaml configuration defining the ds1963s ibutton to emulate.
*
* Dedicated to Yuzuyu Arielle Huizer.
*
* Not a fan of libyaml in C, this code is a horribly convoluted state machine.
* Either I've gotten the use wrong, or the design of libyaml is bad. Instead
* of saving ti... | [
"rhuizer@hexpedition.com"
] | rhuizer@hexpedition.com |
69929be2a63e01a7445d4fae1ca3d68479b1d901 | 9431604c4083387e75fbf1678d70b6901ca9d8fa | /src/main/src/ControlMap.h | c4d365fa0951c5b9cdae2e51cda90f936db6e4dd | [] | no_license | somethingsbruin4550/CppRobot2020 | eb0bac724c6b313b3ac7e7d5e40bb8441bf42059 | c088a8525d568e7e48156d6f93cf2763d350c4aa | refs/heads/master | 2021-01-01T09:23:49.445516 | 2020-06-16T19:15:31 | 2020-06-16T19:15:31 | 239,217,408 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 632 | h | #pragma once
// Joystick Axises
#define L_JOYSTICK_HORIZONTAL = 0;
#define L_JOYSTICK_VERTICAL = 1;
#define LT = 2;
#define RT = 3;
#define R_JOYSTICK_HORIZONTAL = 4;
#define R_JOYSTICK_VERTICAL = 5;
// Controller Buttons
#define A_BUTTON = 1;
#define B_BUTTON = 2;
#define X_BUTTON = 3;
#define Y_BUTTON = 4;
#define ... | [
"ethanstacy02@gmail.com"
] | ethanstacy02@gmail.com |
82c98a8b84dc7b2652ac0f7c3e5e3f30b641cf7c | a7075fce559886acfc7ab683dd5aa67323ff5f88 | /sensorSO.c | 9651874e1c610d601fea02755f45e815584461ee | [] | no_license | edaniel09/proyecto2pSO | ef263b8de6a0da0e80618ee58084c2384deca4c3 | 3481b15db32a3869d03251d7b6a556b94d6be79f | refs/heads/master | 2020-04-19T20:00:13.785892 | 2019-01-30T19:36:39 | 2019-01-30T19:36:39 | 168,403,241 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,404 | c | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
* main.c
* Copyright (C) Daniel Ochoa Donoso 2010 <dochoa@fiec.espol.edu.ec>
*
* main.c 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... | [
"edmoreira0193@gmail.com"
] | edmoreira0193@gmail.com |
1220aa7be10913bcb58d4ec2ab151107ed629ce5 | 34d4b9e87627b76ea09fe5c397446659c9fb62c6 | /Digital_Music_Manager/DMM/main.c | 7fc3766ff9e37ab64776337dd8b2756049ca6031 | [] | no_license | ryan-neisess/code-samples | d0f0a36a9e37fabaa5d4a5623ac3a9eafad4dca4 | ae8ffdca33238f6bd91cbb80309fb92d6fc40af9 | refs/heads/master | 2020-03-29T21:40:26.910898 | 2019-10-18T08:40:09 | 2019-10-18T08:40:09 | 150,380,065 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 616 | c | /*
Programmer: Ryan Neisess
Course: CptS 122, Section 6, Spring 2016
Instructor: Andy O'Fallon, TA: Peter Qafoku
Title: PA2, Digital Music Manager
Date completed: Mar 12th, 2016
Description: The program is a basic, text-based digital music manager that allows users to load
in music records from a text file, st... | [
"ryan.neisess@wsu.edu"
] | ryan.neisess@wsu.edu |
069c70124b3efca58105d360bb0eabacbb1e8b96 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/extr_hw.c__rtl88ee_set_media_status.c | 38289adb71752c25e0bb4df3df115326339b5b58 | [] | 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 | 4,071 | 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 |
68a2a4953c14e165cff31300dc8cb149db9e7772 | 5a47737f5cc00543cb01f5bbb3e2f41e5f13b7ce | /teensyMAMEClassic1/_unused/drivers/driver_sonson.c | 32c30e599b74eb14f1528f2e8961bdc041b4f0a1 | [] | no_license | Jean-MarcHarvengt/teensyMAME | 0556df1a514e94e00706988f44e2e05b99f6971a | c4210da674aa72dd5e60be88a858812648e03fe9 | refs/heads/master | 2020-07-26T12:26:23.591912 | 2019-09-28T15:29:00 | 2019-09-28T15:29:00 | 208,643,063 | 15 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,971 | c | /***************************************************************************
Son Son memory map (preliminary)
MAIN CPU:
0000-0fff RAM
1000-13ff Video RAM
1400-17ff Color RAM
2020-207f Sprites
4000-ffff ROM
read:
3002 IN0
3003 IN1
3004 IN2
3005 DSW0
3006 DSW1
see the input_... | [
"harvengtjeanmarc@gmail.com"
] | harvengtjeanmarc@gmail.com |
de4c9d43cf9459e3ef357bb267e96e8ab8c74b44 | b945b2fac11f237a49de33af1b8fa02ba3ed1814 | /bspmath/include/prototypes/bsfilendpar.h | af9ba4c157d97d4973faadd972018bf62ae46187 | [] | no_license | ahundiak/isdp | b94f56f7a7b02b806209ff06da8e22497f6e1386 | 07572eb18f07cbf762505ef34e471fa47c102df4 | refs/heads/master | 2021-03-12T20:02:34.067237 | 2011-12-16T20:03:20 | 2011-12-16T20:03:20 | 37,136,442 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 148 | h | /* /usr3/bs/src.em/bsfilendpar.c */
extern void BSfilendpar(IGRint, IGRdouble, IGRdouble, IGRdouble, IGRint, IGRint, BSpair *, IGRint [2], BSrc *);
| [
"ahundiak@e9faf64c-7e38-11de-a453-d5a50d962d30"
] | ahundiak@e9faf64c-7e38-11de-a453-d5a50d962d30 |
20166b6e322f465b3473471ceaf9d9ad165b3f66 | e25c8b65c0115053b14f8ecffaea94a964eefa1f | /ds/u/k/kakasi/eq/mask.c | b31cbc94b270aa530a16608def683a412d7fb2fb | [] | no_license | zwshen/mudos-game-ds | c985b4b64c586bdc7347bd95d97ab12e78a2f20f | 07ea84ebdff5ee49cb482a520bdf1aaeda886cd0 | refs/heads/master | 2022-03-01T14:55:10.537294 | 2022-02-15T15:41:26 | 2022-02-15T15:41:26 | 244,925,365 | 4 | 1 | null | 2022-02-15T15:41:27 | 2020-03-04T14:44:49 | C | BIG5 | C | false | false | 635 | c | #include <ansi.h>
#include <armor.h>
inherit MASK;
void create()
{
set_name(RED"寫輪"HIW"ソ"HIY"眼"NOR,({"sha-lon mask","mask",}) );
set("long",@LONG
旗木卡卡西的貼身護具之一。
LONG
);
set_weight(291);
if( clonep() )
set_default_object(__FILE__);
else {
set("limit... | [
"zwshen0603@gmail.com"
] | zwshen0603@gmail.com |
0773347eee3c6872054e2a22a3d09b2a0bc0d8f9 | 0be7bb63022754d44b5d272309109f63d7862727 | /m/rls/rlb/ricas.c | 1b37ad47b88478ce898094ad1cfbc6a5408bccfd | [] | no_license | rust11/rust | dbb3f68d2b8eea6a5de064f644e203fa2cacd8b2 | 8d347f1415da38b679cbafe2eb0ae0332c0ff0ee | refs/heads/master | 2023-03-10T06:35:41.453764 | 2023-03-08T18:26:00 | 2023-03-08T18:26:00 | 32,439,492 | 13 | 2 | null | 2022-08-12T04:10:56 | 2015-03-18T05:18:25 | R | UTF-8 | C | false | false | 1,777 | c | /* file - ricas - case statements */
#include "m:\rid\ridef.h"
#include "m:\rid\ridat.h"
#include "m:\rid\chdef.h"
#include "m:\rid\imdef.h"
#include "m:\rid\eddef.h"
#include "m:\rid\stdef.h"
#define riKcas 32
int riVcas = 0;
int riAcas [riKcas]= {0};
/* code - ri_orf - or/of preprocessor */
void ri_orf(
int brk )
... | [
"rust11@users.noreply.github.com"
] | rust11@users.noreply.github.com |
e045099f57195034164a128cc342076d55312328 | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/base/screg/winreg/server/regsec.c | c09ec7768916b0fef69b3ad9077ceb99ef0c7fc3 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 33,020 | c | /*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
RegSec.c
Abstract:
This module contains code to apply security to the otherwise unsecured
top level keys, in fashion that will allow existing consumers access to
the keys that they need (print, srvmgr, etc.).
Author:
Richard Ward (r... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
f7f8e7dfd789e8ae223042325a40175a1b5920f2 | 48138de07966053e6aae6eeda42acf37037e23da | /All_Sprints/sprint08/t03/mx_hex_to_nbr.c | 82e5a2236b118a22c57f34735a27def5a4cac935 | [] | no_license | JustXAH/Ucode_MarathonC | 23f425320c3671753292d5089b8ce54205dfa3c1 | 22ebf06f2cf2c5c62746bbb53e5397511ad5cae8 | refs/heads/master | 2022-12-07T16:23:47.164830 | 2020-09-01T12:57:24 | 2020-09-01T12:57:24 | 291,010,240 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 619 | c | #include "hex_to_nbr.h"
unsigned long mx_hex_to_nbr(const char *hex) {
unsigned long nbr = 0;
int n = 0;
unsigned long dec = 1;
if (!hex)
return 0;
for ( ;hex[n + 1]; n++)
dec *= 16;
for (int i = 0; hex[i]; i++) {
if (mx_isdigit(hex[i]))
nbr += (hex[i] - 48)... | [
"ikhanenko@student.ucode.world"
] | ikhanenko@student.ucode.world |
12a78efb3fca6bdabcd8167fb6d11bdd635c34ce | de83bac98c6351add062d890000bc364ea68972b | /Lab3/SudokuValidator.c | 0ac0da49e7100c643f1d5b24acc9f235266b0388 | [] | no_license | KristenBrandt/Sistemas-Operativos | f044423f37078dcb573f329efce54b39ee0c2611 | 1c357f9f8b1243c30d0f982e99922324a1119fcc | refs/heads/main | 2023-04-21T07:45:07.742394 | 2021-04-27T03:52:21 | 2021-04-27T03:52:21 | 337,278,232 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,371 | c | #include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
#include <stdbool.h>
int tablero[9][9];
int revisado_rows;
int revisado_cols;
int revisado_squares;
/*validacion de rows */
void *validarRows( void *param){
int j,k;
for (j = 0;j<9;j++){
int revisar_nums[] = {1,2,3,4,5,6,7,8,9};
for (k... | [
"kabrandtf@gmail.com"
] | kabrandtf@gmail.com |
6f7ce927611fe4a889cb5a5e5b58eaef88188035 | 40de3da30239862f11a946166b50438174c2fd4e | /lib/wizards/nalle/_lasttells.c | f79127590c13f9bc08ee0ed3311e9f3dae2b6505 | [
"MIT"
] | permissive | vlehtola/questmud | f53b7205351f30e846110300d60b639d52d113f8 | 8bc3099b5ad00a9e0261faeb6637c76b521b6dbe | refs/heads/master | 2020-12-23T19:59:44.886028 | 2020-01-30T15:52:16 | 2020-01-30T15:52:16 | 237,240,459 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 529 | c | cmd_lasttells(str) {
object ob;
if (!str) { write("Need argument.\n"); return 1; }
ob = find_player(lower_case(str));
if (!ob) { write("No such a player.\n"); return 1; }
last_tell(ob->query_last_tells());
if
(ob->query_level()>this_player()->query_level() && this_player()->query_name()!="Nalle")
{ tell_ob... | [
"ville.lehtola@iki.fi"
] | ville.lehtola@iki.fi |
e418c13f6ed8184256e55213d63af207f2a4a6d6 | fe692881320e10c55962cebd165d478c1434c359 | /skill/64/64039.c | 9f4e4f409feaabfc8dee4302dc8eeda31eeb2275 | [] | no_license | anho9339/chienquoc | 130602c90c43053bbc99dfbfbc877de0b2d81dd7 | cb5157d5eabcb4bb2ff71c292cfbdd5dc5fbb221 | refs/heads/master | 2021-07-04T07:51:49.408023 | 2021-02-01T15:15:58 | 2021-02-01T15:15:58 | 222,929,950 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 567 | c | #include <ansi.h>
#include <skill.h>
#include <effect.h>
#include <equip.h>
#include <item.h>
inherit "/inh/std/vitaskill";
void create()
{
set_skill(640);
set_skill_type(2);
set_number(39);
set_name("Bích Long Đầu Cân Chế Tác");
set_skill_level(34);
set_tool(510);
set_tili(1);
set_final("/item/final/65/2030"... | [
"hothienan1993@gmail.com"
] | hothienan1993@gmail.com |
21be6a582b8e63d1914e9e99236ffbc6d085fe75 | 8c04df9a515c339793a270b6230259805b00262c | /pwmMCC.X/mcc_generated_files/pin_manager.h | 808e320aa8cde920284761b7a49e805427ac84aa | [
"MIT"
] | permissive | yogee1707/myPicProjects | 4b0bc1231a7fcf6a32bfe4bd633f3e73b1fc008e | 8f7445629e09dc51340a93089eff62d06a5c4ff6 | refs/heads/master | 2020-05-14T20:13:46.156189 | 2019-04-17T22:07:05 | 2019-04-17T22:07:05 | 181,941,141 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,496 | h | /**
@Generated Pin Manager Header File
@Company:
Microchip Technology Inc.
@File Name:
pin_manager.h
@Summary:
This is the Pin Manager file generated using PIC10 / PIC12 / PIC16 / PIC18 MCUs
@Description
This header file provides APIs for driver for .
Generation Information :
P... | [
"yotamhane@gmail.com"
] | yotamhane@gmail.com |
ad3b0e0a14086f960cb07c404e3e2d1b215a5e61 | 253dc4e0b1ee631e248021b8c80386add36d4128 | /src/microkernel/src/mbedtls/bn_mul.h | d5cf1c4f2dbb11e83d8e57c78435f74b4a7bb3b6 | [] | no_license | wesley-hk/EZIOT-SDK | 440265b41247b4d95060a4e84ba30f9edf009ea6 | f1dbabd3fa522e556945559e08afcb32dcbd2b0a | refs/heads/master | 2023-08-27T20:43:08.378170 | 2021-11-08T10:55:06 | 2021-11-08T10:55:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 35,286 | h | /**
* \file bn_mul.h
*
* \brief Multi-precision integer library
*
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You... | [
"zhangdi29@ezvizlife.com"
] | zhangdi29@ezvizlife.com |
3077e697336e3b20028dca12719c0c043266dd4b | 14c77d6dee2f0fd522ea8cbf31ee68786856f11f | /7079_Big_Mod.c | 271e16f31fe464f669ee00a4cfb593526e397279 | [] | no_license | hydai/NTHU-OJ-Code | c3d10dddb6748b7df0c299b69ad9101fe0386b4c | 6016952e3e44243413f9b5eab3dd1f70cd347b18 | refs/heads/master | 2021-01-17T08:37:41.216418 | 2016-07-09T02:26:45 | 2016-07-09T02:26:45 | 12,322,536 | 6 | 0 | null | null | null | null | UTF-8 | C | false | false | 893 | c | #include <stdio.h>
#include <stdlib.h>
/*value*/
int m;
/*function*/
long long int mode(int b, int p);
int main(int argc, char *argv[])
{
int b, p;
long long int ans;
while (EOF != scanf("%d%d%d", &b, &p, &m)) {
if (b%m==0) {
ans = 0;
}
ans = mode(b, p);
print... | [
"z54981220@gmail.com"
] | z54981220@gmail.com |
0dfd3320294559b4017e9812d1845e4c07f01377 | 53cec7c4ca4bef433c649c46d7cf208db4fb55e4 | /u/stey/u/ziye/weapon_new/standard/body.c | 32ebf9f953c578d5039879cae367cf868853fe38 | [] | no_license | androids7/sjsh | c57b2f0f94932e228641a166efda8b7e19eefcc1 | 1c0391f6b8236f2c6e0c62a2bf904f47e3d5ca26 | refs/heads/master | 2021-01-09T15:35:19.076098 | 2016-02-21T11:27:48 | 2016-02-21T11:27:48 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C | false | false | 554 | c | // tiejia.c
#include <armor.h>
inherit ARMOR;
void create()
{
set_name("Ìú¼×", ({"tie jia","tiejia","jia","armor","body",}));
set_weight(40000);
if( clonep() )
set_default_object(__FILE__);
else {
set("unit", "¼þ");
set("long", "Ò»¼þ³Áµ... | [
"liming.xie@gmail.com"
] | liming.xie@gmail.com |
41419c1ec6e2bf9e72e330cf9f9eb35229ab7287 | 16caae4586ae492d6e5f1e0a2abd3bcbc9fcbd18 | /ChattingServer_v1.1/StressServer/Packet.h | 496c31f51403c14cff82775b80fb1f4d4a9194d6 | [] | no_license | mingdyuo/TCP-socket-chatting-server | 98e5e074fa655230b541d4955ed03dbf1d571ddf | 98c40617bdf6d14a7cad24e6ccee4c700bd9ddee | refs/heads/main | 2023-05-05T02:24:52.586361 | 2021-05-30T09:10:14 | 2021-05-30T09:10:14 | 350,212,412 | 1 | 1 | null | 2021-03-25T08:59:24 | 2021-03-22T04:59:35 | C++ | UTF-8 | C | false | false | 1,634 | h | #pragma once
#include <windows.h>
#ifndef _STRUCT_PACKET
#define _STRUCT_PACKET
enum eAction : UINT16
{
UNINITIALIZED = 0,
SERVER_ENTER = 11,
SERVER_EXIT = 12,
ROOM_ENTER = 21,
ROOM_EXIT = 22,
CHAT_BROADCAST = 31,
CHAT_MULTICAST = 32,
CHAT_UNICAST = 33,
LIST_CURRENT_ROOM = 41,... | [
"phera5432@naver.com"
] | phera5432@naver.com |
be5467014fae4ef0c2d789cb8e5a9af419f723b5 | 07189bc64844260bc71268d29689b0b8d01f803d | /Appnote/W5200E01-M3_SMTP_with_DHCP/Work/App/source/APPs/dhcp.c | d530f368fc3786dc3418770b0981fc6309e404bf | [] | no_license | KISSMonX/W7200 | dd03400f615e05f53d9f61c1ea917bf519ef561b | 61e1f8b782400a59c508b70571abe86113d6fa62 | refs/heads/master | 2020-12-25T17:59:11.840111 | 2013-11-18T08:20:47 | 2013-11-18T08:20:47 | 14,481,025 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 23,969 | c | /**
* @file dhcp.c
* @brief functions relative to dhcp
*/
#include <stdio.h>
#include <string.h>
#include "stm32f10x.h"
#include "config.h"
#include "W5200\w5200.h"
#include "W5200\socket.h"
#include "util.h"
#include "sockutil.h"
#include "Apps\DHCP.h"
//#define DHCP_DEBUG
#define HOST_NAME "WIZn... | [
"jinbuhm.kim@gmail.com"
] | jinbuhm.kim@gmail.com |
b954138153bad41ffefd1c4242aa2e9293a1c503 | 05c1823cd0d78136bd80d0120b2d98b056e9fff7 | /firmware/scratch_server/serial.c | 515a8fd0d369f8b3759aecd12b34af1bb23c008d | [] | no_license | fluffware/scratchx_PLC_S5 | 70b860b812323c12d79948c58b8dd83b8cc0b4c7 | 98aff13a1d66ff507cfb839f1f014b7a2362dbc1 | refs/heads/master | 2021-01-21T12:52:48.735363 | 2015-08-26T19:54:42 | 2015-08-26T19:54:42 | 39,632,360 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,392 | c | #include "serial.h"
#include <mcs51reg.h>
#include <stdint.h>
#define BPS 38400
#define F_OSC 14745600
#define S0REL (1024 - (F_OSC/((long)64*BPS)))
#define S1REL (1024 - (F_OSC / ((long)32 * BPS)))
#define TI1_MASK 0x02
#define RI1_MASK 0x01
#define ES1_MASK 0x01
/* Ring buffer for reading */
static __xdata uint8_t... | [
"ksb@fluffware.se"
] | ksb@fluffware.se |
64486a0bde81d5f04a3ae1a4f00aa5c1e5cb8030 | 7e61bcdf368941c26381e7772eddec5522341c22 | /6/spin/pan.c | 96352474c05d4501e1062be2a1c2860b7bf70d22 | [] | no_license | luciacortes/isel2018 | 8db9783a392ee012d95295a0cd0cf2c391869901 | 365fd4fe1765cf0005b425f4e45a4c1582d6b601 | refs/heads/master | 2021-04-30T07:43:08.442138 | 2018-06-03T21:11:49 | 2018-06-03T21:11:49 | 121,355,421 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 330,890 | c | /*** Generated by Spin Version 6.4.7 -- 19 August 2017 ***/
/*** From source: alarma.pml ***/
#ifdef SC
#define _FILE_OFFSET_BITS 64
#endif
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#if defined(WIN32) || defined(WIN64)
#inc... | [
"lcortes.spinola@gmail.com"
] | lcortes.spinola@gmail.com |
fdb1ab0c6698d9fe649d7dbb68845fef034eb4ea | f08bbe3a9406fe3e39aa3c03eb979fdd88ea819a | /Oscillographer/EMWIN/STemWin/inc/GUIDRV_Dist.h | a6e47c4317c3dcb52a234fbdcea32f116e50cc22 | [] | no_license | lazode/MCU_Code | e41def826d7b812fe00db76bd288106d7acd37e3 | 1105eb8f289f9107d97b3dc9de0e50a456570964 | refs/heads/master | 2020-12-30T15:07:39.352063 | 2017-08-11T06:11:00 | 2017-08-11T06:11:00 | 91,100,444 | 7 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,321 | h | /*********************************************************************
* SEGGER Microcontroller GmbH & Co. KG *
* Solutions for real time microcontroller applications *
**********************************************************************
* ... | [
"lanzhuo_@hotmail.com"
] | lanzhuo_@hotmail.com |
7c50c143541ce5a7fe7ae39b21d4f1e7b1b1c1a6 | 6d94ddbe6bb313f95e4193efb14197b055d36d31 | /code/embedded/tests/radio/main.c | 1d042b1820825236f3cbb7fd44e23e7cd3d12185 | [] | no_license | alejandrorosas/trowelproject | 340d292815207e355e0f50adc15b6e1f51940f97 | 46eef4bbb75486b39f5bbf41b6a8db36a982d1a4 | refs/heads/master | 2021-01-10T14:23:44.458570 | 2010-06-07T08:56:10 | 2010-06-07T08:56:10 | 46,488,159 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,573 | c | #include <io.h>
#include <signal.h>
#include <string.h>
#include "clock.h"
#include "leds.h"
#include "mac.h"
#include "timer.h"
#define EVENT_NONE 0
#define EVENT_SEND 1
#define EVENT_SENT 2
#define EVENT_RX 3
volatile int event = 0;
uint8_t msg[14] = "hello";
uint16_t rx_from;
uint8_t rx_msg[14];
... | [
"clement.bdr@16d9f100-46de-11de-89ec-3d9467717a5a"
] | clement.bdr@16d9f100-46de-11de-89ec-3d9467717a5a |
f413d9468f147c730979280e18b92d264be545ed | fe1404db3707436fe1339a959542e0a432d9586e | /FURenderKit/FURenderKit.framework/Headers/metamacros.h | 41509585839fe190b37e9f86473cef1e3479c080 | [] | no_license | Faceunity/FULiveDemo | cedb4f2420f84bdd2d8968921b0754bcdf71d8c0 | 3e93a2b6ff394915cabbc7aec17ef18c2711c64b | refs/heads/master | 2023-07-26T00:05:29.202432 | 2023-07-07T08:48:38 | 2023-07-07T08:48:38 | 81,923,494 | 307 | 114 | null | 2023-07-07T08:48:39 | 2017-02-14T08:36:05 | Objective-C | UTF-8 | C | false | false | 441,757 | h | /**
* Macros for metaprogramming
* ExtendedC
*
* This file has been generated using
* MetamacrosGenerator software.
* Copyright (C) 2020 Egor Chiglintsev
*
* Source code available at
* https://github.com/wanderwaltz/MetamacroGenerator
*
* It is based on and is extending the metamacros.h
* file included i... | [
"lshmissjhy@gmail.com"
] | lshmissjhy@gmail.com |
454daad3bd96a4a671f6a0d023ddbd70883f4b4d | 95e03acc94d9749c7a4b42bf0b0860062b2abdb2 | /LinkedLists/g4g/reverseLinkedList/code.c | 3aaeef680acff052fabffe094569fc5a25c21ccb | [] | no_license | NileshkumarRaghuvanshi/DSA | 8a0d3c39a0cf80d2835f6a6c7a9a6830d296ef8b | 882fd246cdc4afdb296c6eaee378a85953c6d8a0 | refs/heads/master | 2021-01-01T16:46:40.608203 | 2018-05-09T09:09:43 | 2018-05-09T09:09:43 | 97,917,121 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,084 | c | #include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
struct node {
int data;
struct node *next;
};
struct node *createNode(int data) {
struct node *temp = malloc(sizeof(struct node));
if(temp) {
temp->data =data;
temp->next = NULL;
}
else {
printf("Malloc error\n");
exit(-1);
}
return temp;
... | [
"noreply@github.com"
] | NileshkumarRaghuvanshi.noreply@github.com |
1d03c560a6a2a1845268bbc89c935a9a74e46e2c | e31bd0a506b2673455216c6f32af5985bb21cd50 | /ft_memmove.c | ba0886dfbeed490f8dff06c2208c9dfa56fd42bc | [] | no_license | newmersedez/libft | aee62d3f212842c5929edf1bce9b6b5d2bcf7ab9 | b99bd7d256dd17f98d07ffcadf77f9be832020cc | refs/heads/master | 2023-08-18T11:01:17.259779 | 2021-10-27T07:57:20 | 2021-10-27T07:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,312 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove.c :+: :+: :+: ... | [
"trishkk2001@gmail.com"
] | trishkk2001@gmail.com |
b1f548bc730940b5f1d74eee190a6d84b56c0162 | dfefadef9e532b23f5935cb6019a2c7a8a56a02f | /PT3 Problem 1 -BlockChain/others/miner.h | 17b5fa872561d8e5ffb2701395743c4ce3ef88a0 | [] | no_license | ohadke/OdooTest | b964837bb66215efba7efd022b07bfac26842a1c | cd86aa2e08ab137fc472c4d8ed7ee05823f3d8d2 | refs/heads/main | 2023-07-10T18:13:27.003981 | 2021-08-18T13:58:09 | 2021-08-18T13:58:09 | 397,619,279 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 280 | h | #ifndef __MINER__
#define __MINER__
#include"globals.h"
#include"BlockChain.h"
void* MinerRoutine(void* input);
void* DummyMinerRoutine(void* input);
Block createBlock(BlockDataForHash blockData,unsigned int hash);
BlockDataForHash getBlockForDataData( int id);
#endif | [
"noreply@github.com"
] | ohadke.noreply@github.com |
d1b13deb44bc7b401c54b35eda123ae79459ab97 | 870b0291d1e2602ea72edb28974a1aa705e3eb05 | /test/stdlib/lldiv.c | 0385a4cb3797ee48aa8f18647f4819bf67634aba | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | SeanBarber/libc | 7e4b3bc1b4d4de9e5e08728bb15b8b8be62e7ad8 | 6c4a6a36cdaf9eda52f6d65dfd9ed59ffdce5ff1 | refs/heads/master | 2021-08-30T22:40:48.249685 | 2017-12-17T19:18:33 | 2017-12-17T20:44:32 | 114,787,919 | 0 | 0 | null | 2017-12-19T16:33:50 | 2017-12-19T16:33:50 | null | UTF-8 | C | false | false | 9,757 | c | /*
* Copyright © 2017 Embedded Artistry LLC.
* License: MIT. See LICENSE file for details.
*/
#include <stdlib.h>
// Cmocka needs these
// clang-format off
#include <setjmp.h>
#include <stdarg.h>
#include <stddef.h>
#include <cmocka/cmocka.h>
// clang-format on
static struct
{
uint64_t x, y, div, mod;
} t[] = {
0x... | [
"phillip@embeddedartistry.com"
] | phillip@embeddedartistry.com |
19da40db10975e1c5c7e00f101a3bea0d05cb264 | 50e7f29b07531bf3db585e420fb7a4209bacf102 | /unity-samples/Temp/il2cppOutput/il2cppOutput/Mono_Security_Mono_Security_Protocol_Tls_Handshake_Handshake.h | e25e05b3de9837230285b4552ac21a01bfe6a7b8 | [] | no_license | golergka/appboy-unity-sdk | 0d7a8732c6dfd66ffbf30c9214c932a04f2b6d59 | deeeba3849bd3a8e6a1166e95a6a5be6f5038646 | refs/heads/master | 2021-01-18T11:53:22.096992 | 2016-03-17T12:24:52 | 2016-03-17T12:24:52 | 54,115,484 | 0 | 0 | null | 2016-03-17T12:18:57 | 2016-03-17T12:18:56 | null | UTF-8 | C | false | false | 436 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Enum.h"
#include "Mono_Security_Mono_Security_Protocol_Tls_Handshake_Handshake.h"
// Mono.Security.Protocol.Tls.Handshake.HandshakeType
struct HandshakeTy... | [
"wenzhi@appboy.com"
] | wenzhi@appboy.com |
7125685161cfa95f84daf17a3cad16a2c26288fd | eaadacb20e66f88aee44547fa5d8fb9e37a908eb | /Build/Pods/Headers/Public/React-jsi/jsi/jsilib.h | 827a6c74d12433ba238b634387cf99382d62d4d0 | [] | no_license | butchi-conviva/conviva-ios-reference-app | afa3923d5a8fbd1229a9c7f706763dfec9336eee | 6692d20bb67c23d676410ca37cec49992ccb2eb1 | refs/heads/master | 2020-12-18T20:17:20.165852 | 2019-09-19T18:38:53 | 2019-09-19T18:38:53 | 235,510,048 | 0 | 0 | null | 2020-01-22T06:07:05 | 2020-01-22T06:07:04 | null | UTF-8 | C | false | false | 107 | h | ../../../../../../Source/conviva-react-native-refapp/node_modules/react-native/ReactCommon/jsi/jsi/jsilib.h | [
"gtiwari@conviva.com"
] | gtiwari@conviva.com |
d3feaa79e326239b0a0d83cc023398d19d8e050f | f4a11c3b79215563a9ff8c4501a0e977c57488e8 | /pru/libs/controller/pru_controller.c | 28373192cf73f9db91bb74b67857dd6d024a0692 | [
"Apache-2.0"
] | permissive | org-mylinuxdrone-project/org.mylinuxdrone.project | 67b5a1d67ff8206e01b3f946000fa34faa48c41b | 9ddd0a97e52c82cb3569acc05e8e809128c532c9 | refs/heads/master | 2020-12-01T20:54:56.966487 | 2020-01-19T18:44:37 | 2020-01-19T18:44:37 | 230,766,992 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,752 | c | /*
* pru_controller.c
* Created on: 06 gen 2020
* Author: Andrea Lambruschini <andrea.lambruschini@gmail.com>
*
* Copyright 2019 Andrea Lambruschini
*
* 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 ... | [
"andrea.lambruschini@telecomitalia.it"
] | andrea.lambruschini@telecomitalia.it |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.