blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
250
content_id
stringlengths
40
40
detected_licenses
listlengths
0
58
license_type
stringclasses
2 values
repo_name
stringlengths
5
107
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
185 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
15.7k
664M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
68 values
src_encoding
stringclasses
27 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
6
9.36M
extension
stringclasses
31 values
content
stringlengths
4
9.36M
authors
listlengths
1
1
author
stringlengths
0
73
117095833f2179246e2436f71aa261242eb1acce
ede68a5b37b9995c1a43c5d35c308be0ef2b0676
/zst/chapter4/zst408c.c
a1f85cd790ff178c37659dc91b5372551e3a00b2
[]
no_license
zstdgithub/zst2355
5bc454324b825f0b1d0d3cbe28ac882dfd20d09d
591350c3d3adc09bad564839c9d2aba70717ef81
refs/heads/master
2020-06-19T23:52:19.229269
2019-07-25T06:37:57
2019-07-25T06:37:57
196,918,221
0
0
null
null
null
null
UTF-8
C
false
false
258
c
/* 输入一个整数,连续显示出该整数个 * */ #include <stdio.h> int main(void) { int no; printf("请输入一个正数:"); scanf("%d", &no); while (no-- > 0) putchar('*'); putchar('\n'); return 0; } }
[ "edz@edzdeMacBook-Air-100.local" ]
edz@edzdeMacBook-Air-100.local
1a749bbcf116b684cc09900040144b3d8954b483
05e81653c49b0dcef323396f23c90ffacfaa0f5f
/deps/shttpd/src/compat_unix.c
e8fe9294d3a0401b7aa56f64c0df76eb97d729a1
[ "Beerware" ]
permissive
gritzko/k7
5d8556427936a06022cc6ebedc19ab78f1e7a0a3
d82323836dccb384543f9690ad69202fa2ce1b52
refs/heads/master
2021-01-18T13:45:07.134377
2009-05-16T12:26:09
2009-05-16T12:26:09
193,822
2
0
null
null
null
null
UTF-8
C
false
false
2,420
c
/* * Copyright (c) 2004-2005 Sergey Lyubka <valenok@gmail.com> * All rights reserved * * "THE BEER-WARE LICENSE" (Revision 42): * Sergey Lyubka wrote this file. As long as you retain this notice you * can do whatever you want with this stuff. If we meet some day, and you think * this stuff is worth it, you can ...
[ "sebastien@type-z.org" ]
sebastien@type-z.org
45d5f08aa3c1e0aeaa84f80f98ca17469e0d6085
31c29fc7eb829f4893985e316c3e4ab9d9f2360b
/RandomPasswordGenerator.c
c17778c9130b3723fb6bb79db6533b467082db14
[]
no_license
imsushant12/Random-Password-Generator
610a1e251c6d0e20c72664a4f179ea3d375f2ce5
52117b5f5543dd0d383121da2c8f056130e34e7a
refs/heads/main
2023-02-07T17:01:18.794864
2020-12-31T09:36:55
2020-12-31T09:36:55
325,764,863
0
0
null
null
null
null
UTF-8
C
false
false
1,943
c
//by Sushant Gaurav #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> int main() { int i = 0; //for executing the loops int length = 0; //to input the size of password int randomizer = 0; //Seed the random-number generator with current time so that ...
[ "noreply@github.com" ]
noreply@github.com
63d29906089718417cf6e39c334c793b7fa39720
e3601afda3edaf5a1506229a6500caa952b7e06c
/Day 7 nested for practice/demo3.c
0a951310c54c7b91f7fe5ff8f41b75e49d1d3950
[]
no_license
Santhoshkumaradoss/c-programming
f2e3b57d6393f9f4c75175f79c541f22021eb24e
e1d290e8ec513e94608673ce952516f5fa3b4dbb
refs/heads/main
2023-07-16T16:36:08.053991
2021-08-23T07:59:01
2021-08-23T07:59:01
388,423,484
0
0
null
null
null
null
UTF-8
C
false
false
192
c
#include<stdio.h> void main() { int i,j; for(i=5;i>0;i--) { for(j=1;j<=5;j++) { printf("%d",i); } printf("\n"); } }
[ "noreply@github.com" ]
noreply@github.com
907cafd63c4fffac74574ccfe1f606855ca6080a
7b52d7a69260990308d692b5ab118eeca923bb74
/Digit Spelling.c
b0e8245852496caeb78dd3f4325e3ba0879f5c14
[]
no_license
mehedi150/C-Programs
1c2e64d10e19be87c113841dcd76aaac9d741002
0b44316387fd0676978a56b892e7f2724dda9b02
refs/heads/main
2023-02-28T17:58:33.663982
2021-02-09T15:07:07
2021-02-09T15:07:07
307,125,862
0
0
null
null
null
null
UTF-8
C
false
false
741
c
//Switch keyword introduction with case,break and default #include<stdio.h> int main () { int digit; printf ("Enter the digit: "); scanf ("%d", &digit); switch (digit) { case 0: printf ("Zero\n"); break; case 1: printf ("One\n"); break; case 2: printf ("Two\n"); ...
[ "noreply@github.com" ]
noreply@github.com
a7c3bff2c8d4dc93aa61122c5d39835185d51189
2d49e2d71aad0a4ff7feeaf382473c0fba9ae257
/project/Util/util.h
edc39ea87d981d614fcfde8568a7a2d0a253d114
[]
no_license
IOrez/SystemProgramming_project
d5afd7421a87a6d6b65f8d8e91c7aea560efaded
b82e304bb1227d35176e235138664b6262a80bd3
refs/heads/main
2023-02-03T01:19:23.611779
2020-12-16T12:12:53
2020-12-16T12:12:53
314,717,526
0
1
null
null
null
null
UTF-8
C
false
false
73
h
void printTextBlock(TextBlock* Tb); void eraseTextBlock(TextBlock* Tb);
[ "h.5363@daum.net" ]
h.5363@daum.net
afd39e9e9905d1b24cd424018c99bae7aca4eb0f
4a1b388fc7254e7f8fa2b72df9d61999bf7df341
/ThirdParty/ros/include/trajectory_msgs/msg/joint_trajectory.h
d54e9dccff4dcd37ddedbfc7f3533f8770ca47b1
[ "Apache-2.0" ]
permissive
rapyuta-robotics/rclUE
a2055cf772d7ca4d7c36e991ee9c8920e0475fd2
7613773cd4c1226957603d705d68a2d2b4a69166
refs/heads/devel
2023-08-19T04:06:31.306109
2023-07-24T15:23:29
2023-07-24T15:23:29
334,819,367
75
17
Apache-2.0
2023-09-06T02:34:56
2021-02-01T03:29:17
C++
UTF-8
C
false
false
528
h
// generated from rosidl_generator_c/resource/idl.h.em // with input from trajectory_msgs:msg/JointTrajectory.idl // generated code does not contain a copyright notice #ifndef TRAJECTORY_MSGS__MSG__JOINT_TRAJECTORY_H_ #define TRAJECTORY_MSGS__MSG__JOINT_TRAJECTORY_H_ #include "trajectory_msgs/msg/detail/joint_traject...
[ "noreply@github.com" ]
noreply@github.com
7b8a68a3766b6eab6906a3271a73cca8b9b248bb
f3572f47a4d1da7746959bbe9bc8884825d3312b
/q7.c
0dff08a0781c0dd1fad75d8996f9cfd1c4596c53
[]
no_license
vinayakbanga/Assignment4
173a0dcb0ae1cb7c90f022752e0813c7ce450c45
e0dcb64bab3e07a620da3d4e3256f33474d97838
refs/heads/main
2023-02-03T06:16:16.913792
2020-12-15T11:54:33
2020-12-15T11:54:33
321,651,512
0
0
null
null
null
null
UTF-8
C
false
false
402
c
//Write a C program to find sum of digits of a given number using recursion. #include<stdio.h> #include<math.h> int Sum( int num); int main(){ int num,sum; printf("Enter the Number : "); scanf("%d",&num); sum=Sum(num); printf("The sum of digits of %d is %d",num,sum); return 0; } int ...
[ "noreply@github.com" ]
noreply@github.com
d822a7d6be0a3748499ca0b8f3441c6078c8b990
0d681da76c3a0eeaaa4b80b92359ce206e4c4e69
/crawler/headers/sockets.h
c121f6cde9189a96ed66154b40996b0dead23e4e
[]
no_license
IMSike/FormationVal
db1593e69b9e74488a0305fb97e8be2baab0b6ba
97f9b98c47af6d5593bb0097a98b1ee62ae81bf9
refs/heads/master
2020-05-01T18:20:31.402508
2019-05-14T11:28:48
2019-05-14T11:28:48
177,622,493
0
1
null
null
null
null
UTF-8
C
false
false
491
h
#if defined (WIN32) #include <winsock2.h> typedef int socklen_t; #elif defined (linux) #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <unistd.h> #define INVALID_SOCKET -1 #define SOCKET_ERROR -1 #define closesocket(s) close(...
[ "aurelien@localhost.localdomain" ]
aurelien@localhost.localdomain
484d3d3b58543fe595d99b0a4ec2c295ccfe1c44
c5ee390344aa72c730ca27eff709edc046081061
/nitan4/d/foshan/npc/bee.c
bb7d773303fbbead1baa95f5f37d6b77c7d8086c
[]
no_license
DoubleIce/Mud_NitanVersions
fb58143f4840c7a887b756215229ed4e0a5e62d9
2ab430649b29a611008b7cc765b4500b2702841a
refs/heads/master
2021-05-14T10:05:48.157950
2018-01-23T01:40:38
2018-01-23T01:40:38
116,339,674
0
0
null
null
null
null
GB18030
C
false
false
719
c
//bee.c inherit NPC; void create() { set_name("蜜蜂", ({"bee"}) ); set("race", "昆虫"); set("subrace", "飞虫"); set("age", 8); set("long", "这是一只蜜蜂,正忙着采蜜。\n"); set("str", 40); set("dex", 50); set("limbs", ({ "头部", "身体", "翅膀", "尾刺" }) ); set("ve...
[ "34570791+lbbgit@users.noreply.github.com" ]
34570791+lbbgit@users.noreply.github.com
184c72931c337b63ca6ea8272d434cd4bd398aaa
39f31830ac27423cae1cd90c9665acbe03b003ef
/src/queue.c
b8ca3c69f22da80213ed61d3e688f5d4c135c7a7
[]
no_license
alexskp/lem-in
96aa9eab94232b5b1426ee3602d80caf407da53c
5e2ba1b0caed6765b51f6d875595ee5944979810
refs/heads/master
2021-01-02T22:53:34.716497
2017-10-04T01:23:18
2017-10-04T01:23:18
99,414,453
0
0
null
2017-09-20T20:32:33
2017-08-05T09:56:54
C
UTF-8
C
false
false
668
c
#include "lem-in.h" elem *get_last_elem(elem *head) { if (head == NULL) return head; while (head->next) head = head->next; return head; } void push(elem **head, room* content) { elem *last = get_last_elem(*head); elem *new = (elem *)malloc(sizeof(elem)); new->content = content...
[ "skopets.sasha@gmail.com" ]
skopets.sasha@gmail.com
fb73896c6052211203af9ccb0f08fb530166ea24
bb3e5c0d4a67fb11f3c50bda6fc9f9462577c8d1
/head/mergestruct.h
acea730830948b2d0f5c7062031c06527295509c
[]
no_license
aaditya889/Exploit-tools-in-C
45b816c94e7df5c42afa9d87b7ba51e9e1789cf5
5415361120988170d22d7a2bd0af7889f2f86e4e
refs/heads/master
2021-09-09T10:36:16.628887
2018-03-15T08:29:54
2018-03-15T08:29:54
119,353,999
0
0
null
null
null
null
UTF-8
C
false
false
967
h
/*It sorts a struct named node with two integers - 'a' and 'b' ( struct node {int a,b;}; ) . Call merge2(structure,start position,end position,flag); note - end position is n-1 and flag is 1 to sort by 'a' and 2 to sort by 'b'!*/ struct node{ int a,b;}; void merge(struct node *arr,int s,int mid,int e,int fl); vo...
[ "noreply@github.com" ]
noreply@github.com
a00bd43c0a48409ce84043a8b958a88ef510a6d6
bd83c9fa885824e5b08810c76c03d3cbeb00bdf1
/images/fBWDownRight.h
6a8f8127cb631820f8888a02f57ac42a8830208c
[]
no_license
jpleo122/HalftimeHunt
1202f697890d69f2d09aa3a2c2790b93ab2b0e27
e0e9102db7acec0f3ffe43d13da21cfa60e2cc6e
refs/heads/master
2020-04-08T17:09:52.186309
2018-11-28T19:52:03
2018-11-28T19:52:03
159,554,107
0
0
null
null
null
null
UTF-8
C
false
false
584
h
/* * Exported with nin10kit v1.7 * Invocation command was nin10kit --mode=3 --resize=16x16 fBWDownRight fBWDownRight.png * Time-stamp: Wednesday 11/21/2018, 04:06:49 * * Image Information * ----------------- * fBWDownRight.png 16@16 * * All bug reports / feature requests are to be filed here https://github....
[ "noreply@github.com" ]
noreply@github.com
e7da3f873aa157ed2fefc45122b5aeeba58e994f
5205b29c30019c9f2ada8bd172ce20efb284f8bd
/1st_grade/project/project1.c
19b7a6961b8e0d549ae109ff09d0ba4e0ef7ac48
[]
no_license
hyunmin0317/C_Programming
f1cd043e516756ef34a207acf1d9d8ebb60a955b
efe7404a251ec22c843bcc1f679486c4cebf005f
refs/heads/master
2023-04-02T03:50:51.425366
2021-04-05T06:59:58
2021-04-05T06:59:58
332,246,179
1
0
null
null
null
null
UHC
C
false
false
1,659
c
#include <stdio.h> #include <string.h> typedef struct { char num[10]; char name[20]; int mid; int final; int practice; int homework; } Score; void Swap(char* p, char* q) { char* tmp; tmp = *p; *p = *q; *q = tmp; } void Upnum(Score* arr) { for (int i = 0; i < 10; i++) { for (int j = i + 1; j < 10; j++) {...
[ "choihm9903@naver.com" ]
choihm9903@naver.com
83f7949ea82b0bc069d999b2f9a0c42eca6730d7
cfc99437b085afa7304ed5a4eab2a90072c7e50e
/pintools/extras/crt/include/netinet/in.h
906596b0c312adbfc4828aba1b4057bb08695bb1
[ "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
moraispgsi/pin-bootstrap
95498b63f88c311e4fe446259214266130aece3f
7315b4e1709f63f018781456f9c745fc6f020f22
refs/heads/master
2021-09-07T18:09:11.568374
2018-02-27T05:16:32
2018-02-27T05:16:32
122,972,429
0
1
MIT
2018-02-26T14:31:18
2018-02-26T13:17:08
C++
UTF-8
C
false
false
2,151
h
/* * Copyright (C) 2008 The Android Open Source Project * 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, t...
[ "moraispgsi@gmail.com" ]
moraispgsi@gmail.com
276b55e49373102fd3b05c609dff6ff8c905e9cc
c5cb98ad5c3fa37ce761cb9b430b69e29a33141f
/d/wudujiao/road1.c
e3c15f4dd2d5909ecfc73b3151126101cac4483f
[]
no_license
cao777/mudylfy
92669b53216a520a48cf2cca49ea08d4df4999c5
266685aa486ecf0e3616db87b5bf7ad5ea4e57e4
refs/heads/master
2023-03-16T20:58:21.877729
2019-12-13T07:39:24
2019-12-13T07:39:24
null
0
0
null
null
null
null
GB18030
C
false
false
564
c
// by mayue inherit ROOM; void create() { set("short", "黄土大道"); set("long", @LONG 这是一条向南的黄土大道,两旁是一片片绿油油的水田 和悠闲的牧童。大道上人流熙熙攘攘,过往的行人顶着炎炎烈 日满头大汗的匆匆赶路,似乎并无心欣赏这优美的田园风光。 LONG ); set("outdoors", "wudujiao"); set("exits", ([ // "east" : __DIR__"zuixianlou", "south" : __DIR__"road2", // "west" : __DIR__"wumiao...
[ "i@chenxuefeng.cn" ]
i@chenxuefeng.cn
37d18bf935765fb4a240d5d8ceb9081949706bc1
06391f236b8e8458ee0aff3805511552d7c6d9af
/074BCT526/Lab2/Lab 2.2.c
e3851e30d4eb93c0ba01bbec61a8b72ff0e95742
[]
no_license
Salamander321/Lab1stsem
bd15395fd3544885069b73840440a5ae2db62a44
aabc41fa501f520c11b8a027e148f0a0e562ccd7
refs/heads/master
2021-01-24T04:02:13.265943
2018-02-26T05:32:26
2018-02-26T05:32:26
122,918,093
0
0
null
null
null
null
UTF-8
C
false
false
349
c
//This program reads 3 integers from user and displays them in forward and reverse order #include <stdio.h> int main() { int a, b, c; printf("Enter any three integers:\n"); scanf("%d %d %d", &a, &b, &c); printf("The forward order is: %d, %d, %d\n", a, b, c); printf("The reverse order is: %d, %d, %d"...
[ "poudelpranav@gmail.com" ]
poudelpranav@gmail.com
f6055da12d8be301adccc8c7b26203b560a1a8f7
15b985b2cf6ac01d5db698c4afe95cc8af1c0d03
/TQ210_NoOS/7-nand-ecc/main.c
cd324f8bf28dc46a373c4158e676ae823a8f208b
[]
no_license
mankumari20150105/TQ210N
ce0852f029ee9092aec9b87dd055f7677de7e2ea
3cc4c4dc1b780f5a6982a48571742e5874de1dfa
refs/heads/master
2023-03-16T15:41:47.272392
2019-07-23T14:02:46
2019-07-23T14:02:46
null
0
0
null
null
null
null
UTF-8
C
false
false
1,253
c
#include "types.h" #include "uart.h" void bzero(u8 *s, int size) { int i = 0; for (; i < size; i++) s[i] = 0; } /* 测试:使用Ecc校验写入一页数据,然后将某个位反转后不使用Ecc再此写入,然后使用Ecc校验读出数据 */ void main() { int i, ret; u8 oob[64]; u8 buf[2048]; bzero(buf, 2048); /* 1.擦除第0块 */ nand_erase(0); for (i = 0;...
[ "cumtzwf@163.com" ]
cumtzwf@163.com
85a44fb93d38dacaf2ac7fbf15558b907c2db091
b275da44ccc31a3566be8098fc2ba8aabfb58485
/sem_2/lab_08/source/wfs.c
7dda7815a8ecf26f3d9b803e3075eaf399033d26
[]
no_license
SanSanchezzz/operating-systems
235e85499cf688fa4569412ad52522a4fd9c5b0a
ae5be073683e2c1dc018d20a73892f410872cf95
refs/heads/master
2022-10-31T18:57:43.953053
2020-06-16T17:26:11
2020-06-16T17:26:11
272,767,236
0
0
null
null
null
null
UTF-8
C
false
false
4,435
c
#include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/fs.h> #include <linux/time.h> #include <linux/slab.h> #include <linux/version.h> #define wfs_MAGIC_NUMBER 0x13131313 #define SLABNAME "wfs_cache" MODULE_LICENSE("GPL"); MODULE_AUTHOR("Alexander Kupry"); MODULE_DESCRIPTION("lab...
[ "13lex04@gmail.com" ]
13lex04@gmail.com
80f13832f89b72176e1f16abe554ba2555ce83e4
d1cd0e61a0d5ed2b5341bc9e996625fb677f4f23
/lib/asn1c/nr_rrc/RangeToBestCell.c
72748c5c5e091a8559d8d72765edfaa7bde3f6ee
[ "Apache-2.0" ]
permissive
soumyadeepbi/free5GRAN
251bff61bfd30628f0861a285086ac94368de34f
4e92458e955f59d86463ce65ea08c5c06cc8a48e
refs/heads/master
2023-07-28T20:23:42.404672
2021-10-06T16:32:47
2021-10-06T16:32:47
null
0
0
null
null
null
null
UTF-8
C
false
false
1,825
c
/* * Copyright 2020-2021 Telecom Paris 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/LICENSE-2.0 Unless required by applicable law or agreed to in...
[ "aymeric@dejavel.fr" ]
aymeric@dejavel.fr
db4878047c236a0333a48f5426ebcb0ec97f6dac
e74d9cbd67b06b3ed26c444dd1b50ce231cb9e1c
/2019_6_26/2019_6_26/test.c
b1832a4ef9f0b4d06eba7599687e862723d06cd7
[]
no_license
Asupi/C
6ce1a758cd298be4ab5189692fff2223a150447b
9a96c2d729f9fc2748909a12c64c2b316f582665
refs/heads/master
2022-01-22T22:52:45.922976
2019-06-26T02:14:48
2019-06-26T02:14:48
null
0
0
null
null
null
null
UTF-8
C
false
false
1,455
c
#define _CRT_SECURE_NO_WARNINGS #include <unistd.h> #include <fcntl.h> #include<stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> int main() { int count = 500; while (count--) { int i; char Buf[800 * 480 * 3] = { 0 }; int tempbuf[800 * 480] = { 0 }; int lcd_buf1[800 * 480] = { 0 }; ...
[ "1099345943@qq.com" ]
1099345943@qq.com
001386608af966cf59a7c805beef7faebad8fb03
b71b8bd385c207dffda39d96c7bee5f2ccce946c
/testcases/CWE457_Use_of_Uninitialized_Variable/s01/CWE457_Use_of_Uninitialized_Variable__struct_array_declare_partial_init_10.c
d935ee0c8e37bef442a4669ce6656dbd81ed4fb5
[]
no_license
Sporknugget/Juliet_prep
e9bda84a30bdc7938bafe338b4ab2e361449eda5
97d8922244d3d79b62496ede4636199837e8b971
refs/heads/master
2023-05-05T14:41:30.243718
2021-05-25T16:18:13
2021-05-25T16:18:13
369,334,230
0
0
null
null
null
null
UTF-8
C
false
false
5,541
c
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE457_Use_of_Uninitialized_Variable__struct_array_declare_partial_init_10.c Label Definition File: CWE457_Use_of_Uninitialized_Variable.c_array.label.xml Template File: sources-sinks-10.tmpl.c */ /* * @description * CWE: 457 Use of Uninitialized Variable * BadSource: pa...
[ "jaredzap@rams.colostate.edu" ]
jaredzap@rams.colostate.edu
9429ab167f1caf43392203f82fba38c10ad1a29d
5c255f911786e984286b1f7a4e6091a68419d049
/code/659e5202-ddf9-4ca4-a62d-90a264a7cc0c.c
de1f22e4360d61219494f5cd8e4a621c26ac0b11
[]
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
265
c
#include <stdio.h> int main() { int i=4; int j=12; int k; int l; j = 53; l = 64; k = i/j; l = i/j; l = j/j; l = l/j; l = i/j; l = l%j; l = l-j; k = k-k*i; printf("vulnerability"); printf("%d%d\n",k,l); return 0; }
[ "nharmon8@gmail.com" ]
nharmon8@gmail.com
65245b4c995f0ea514691b9680f8e81347a186b6
7d4e986704942d95ad06a2684439fa4cfcff950b
/vendor/mediatek/proprietary/trustzone/atf/v1.0/plat/mt6797/sip_svc/sip_svc_common.c
d46f4db1559684565960ff8dc9db671eacc95d1a
[ "BSD-3-Clause" ]
permissive
carlitros900/96Boards_mediatek-x20-sla-16.10
55c16062f7df3a7a25a13226e63c5fa4ccd4ff65
4f98957401249499f19102691a6e3ce13fe47d42
refs/heads/master
2021-01-04T01:26:47.443633
2020-02-13T17:53:31
2020-02-13T17:53:31
240,322,130
2
0
null
null
null
null
UTF-8
C
false
false
16,112
c
/* Copyright Statement: * * This software/firmware and related documentation ("MediaTek Software") are * protected under relevant copyright laws. The information contained herein is * confidential and proprietary to MediaTek Inc. and/or its licensors. Without * the prior written permission of MediaTek inc. and/or ...
[ "carlitros900@gmail.com" ]
carlitros900@gmail.com
f76e38a3355d97c77d7365a875f2d3d5e4a70540
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/gcc/testsuite/gcc.dg/uninit-pr98583.c
6159c9512f40a06d75f965474a6a06860e2a5eb6
[ "LGPL-2.1-only", "GPL-3.0-only", "GCC-exception-3.1", "GPL-2.0-only", "LGPL-3.0-only", "LGPL-2.0-or-later", "FSFAP", "Zlib", "LicenseRef-scancode-public-domain" ]
permissive
zhmu/ananas
8fb48ddfe3582f85ff39184fc7a3c58725fe731a
30850c1639f03bccbfb2f2b03361792cc8fae52e
refs/heads/master
2022-06-25T10:44:46.256604
2022-06-12T17:04:40
2022-06-12T17:04:40
30,108,381
59
8
Zlib
2021-09-26T17:30:30
2015-01-31T09:44:33
C
UTF-8
C
false
false
525
c
/* PR middle-end/98583 - missing -Wuninitialized reading from a second VLA in its own block { dg-do compile } { dg-options "-O2 -Wall" } { dg-require-effective-target alloca } */ void f (int*); void g (int); void h1 (int n) { int a[n]; f (a); int b[n]; g (b[1]); // { dg-warning "\\\[-Wuni...
[ "rink@rink.nu" ]
rink@rink.nu
148e0ffdfff4d30dc384badf14a94eed39015198
f175bcab3c2f0aad7378c94ac220256982ab2027
/Temp/il2cppOutput/il2cppOutput/UnityEngine_UnityEngine_Events_InvokableCall_2_gen149250066MethodDeclarations.h
b4e78ea898f5fecd42475ab333d34baf47c7a46d
[]
no_license
al2css/erpkunity
6618387e9a5b44378e70ccb859d3b33a7837268c
c618dc989963bcd7b7ec9fa9b17c39fff88bb89b
refs/heads/master
2020-07-22T04:59:49.139202
2017-06-23T16:33:13
2017-06-23T16:33:13
94,344,128
0
0
null
null
null
null
UTF-8
C
false
false
3,940
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include <assert.h> #include <exception> // UnityEngine.Events.InvokableCall`2<System.Single,System.Single> struct InvokableCall_2_t149250066; // System.Object struct Il2CppObject; //...
[ "alecsdulgheru@gmail.com" ]
alecsdulgheru@gmail.com
1a0785493e242017c97394486fd252c5eac36c76
b65b4e195223d843ce7a29d08d4faacd72df46b5
/src/fx.c
02c435d3a30b705ea5e28d49a8c7e27e38ab7707
[]
no_license
mwkent/VocoderOSC
5451b4e867481036c1108de3efdf7c6c5b5c0457
75b6b487867115e2a2fb67cb6341012424ea5860
refs/heads/master
2020-05-30T20:19:30.992244
2014-04-29T17:05:13
2014-04-29T17:05:13
19,261,832
1
0
null
null
null
null
UTF-8
C
false
false
908
c
#include <stdio.h> #include <stdlib.h> #include "../headers/fx.h" /** * Fx: * An audio effect psuedo-class, containing the function that processses the * effect and saved data for the effect. */ /** * fx_new: allocates and returns a new Fx, * assuming fxData has already been allocated/initialized */ Fx* fx_ne...
[ "mwkent@andrew.cmu.edu" ]
mwkent@andrew.cmu.edu
d29bb86ff842fa4f949be8560e7026903f661190
de21f9075f55640514c29ef0f1fe3f0690845764
/regression/goto-instrument-wmm-core/ppc_safe120_TSO_OPT/safe120.c
38b17611f811675833d2a601d1280f8ead70352c
[ "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference", "BSD-4-Clause" ]
permissive
diffblue/cbmc
975a074ac445febb3b5715f8792beb545522dc18
decd2839c2f51a54b2ad0f3e89fdc1b4bf78cd16
refs/heads/develop
2023-08-31T05:52:05.342195
2023-08-30T13:31:51
2023-08-30T13:31:51
51,877,056
589
309
NOASSERTION
2023-09-14T18:49:17
2016-02-16T23:03:52
C++
UTF-8
C
false
false
1,196
c
void fence() { asm("sync"); } void lwfence() { asm("lwsync"); } void isync() { asm("isync"); } int __unbuffered_cnt = 0; int __unbuffered_p0_r1 = 0; int __unbuffered_p1_r1 = 0; int __unbuffered_p1_r3 = 0; int __unbuffered_p2_r1 = 0; int __unbuffered_p2_r3 = 0; int x = 0; int y = 0; void *P0(void *arg) { __unb...
[ "tautschn@amazon.com" ]
tautschn@amazon.com
e8bde2ea53b9e4803c65a3da62245ed626e47e66
f955b71bc89bdf8da84c9807394f096d444684b4
/re2c/test/unicode_group_L_.8--encoding-policy(ignore).c
2d6249b2ac93e89d8f012b097af725f367637a9b
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
permissive
otaran/re2c
0d8ae1f6bd855e5ae2c003b96fbfbe4a22516f63
df19195968a158acf78eb4723c60925fbf1f6e04
refs/heads/master
2021-01-22T16:10:15.677837
2015-12-02T12:11:01
2015-12-02T12:11:01
47,002,105
1
0
null
2015-11-27T22:46:43
2015-11-27T22:46:43
null
UTF-8
C
false
false
35,987
c
/* Generated by re2c */ #line 1 "unicode_group_L_.8--encoding-policy(ignore).re" #include <stdio.h> #include "utf8.h" #define YYCTYPE unsigned char bool scan(const YYCTYPE * start, const YYCTYPE * const limit) { __attribute__((unused)) const YYCTYPE * YYMARKER; // silence compiler warnings when YYMARKER is not used # ...
[ "skvadrik@gmail.com" ]
skvadrik@gmail.com
ea1a5df073e09807fd9710460dd1eb04e9530f2b
76eda7985e7dd961a56e2eadf0a47f157f512d01
/hw3/hw3.c
225dd58be2702e9e370848b769a816133e4c4079
[]
no_license
HCrane/ESP_Aufgaben
e042481c7c65c0fde42eb28dc64044c5af6f23ac
38c8ebc267e3b937a4e4e75a9e40773105242640
refs/heads/master
2021-03-27T10:31:57.326112
2016-11-14T21:01:08
2016-11-14T21:01:08
73,069,542
0
0
null
null
null
null
UTF-8
C
false
false
970
c
//------------------------------------------------------------------------------ // hw3.c // // Overflow Errors // // Group: 3 study assistant Lorenz Kofler // // Authors: Emanuel Moser 1430683 // // Latest Changes: 07.11.2016 (by Emanuel Moser) //------------------------------------------------------------------------...
[ "emanuel.moser@student.tugraz.at" ]
emanuel.moser@student.tugraz.at
f69a5f227021656c158b8a83bd592c91c992ef4b
f1652f78986dbf1bd63009a7cf65b1832615f1c3
/ternary.c
cdeb3e9fedbf6635b702fe142c96b72f68aa63a0
[]
no_license
asr1410/C
e3e5cb9ec85fa2d2b200c7a133fba2d99bea4401
7f930b556590f83f80b7c60032b316ce04ddf0cf
refs/heads/master
2023-06-21T04:49:05.537144
2021-08-04T13:45:59
2021-08-04T13:45:59
324,993,330
0
0
null
null
null
null
UTF-8
C
false
false
367
c
#include <stdio.h> #include <math.h> #include <time.h> #include <conio.h> #include <string.h> #include <stdlib.h> int main() { int n; int i = 1; scanf("%d", &n); // printf("%c", i == n - 1 ? '\n' : ' '); if (i == n - 1) { printf("\n"); printf("hello"); } else { ...
[ "abhishek.rawat1410@gmail.com" ]
abhishek.rawat1410@gmail.com
4fbd93b31319737f63f122578c8d1d898930c2f1
30dc0046561385a66ba44c5642dde30ac0382a71
/cstring/ft_split.c
9faee184340ddc0a0581cd9af7e02e617c036c6b
[]
no_license
dimashipicyn/libft
c8a1876e73073656b359fda14575f3813987aab1
81af3d298c53dcae8344f51ec086bc9e6ad8a392
refs/heads/main
2023-08-24T02:46:48.936101
2021-11-02T15:00:00
2021-11-02T15:00:00
364,843,964
0
0
null
null
null
null
UTF-8
C
false
false
1,062
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_split.c :+: :+: :+: ...
[ "lbespin@pr-h4.kzn.21-school.ru" ]
lbespin@pr-h4.kzn.21-school.ru
4b22bdc071434776813574f6b8d2e524515c59bb
60ca11e36211ad18d1995370dacb9bf536b7da68
/libft/ft_strsub.c
b1bb9a415bbaf4b67219b5e1a727787e8ee294cd
[]
no_license
Gwba56/get_next_line
729252d6a4941b41973461ea34453d00f61ad88e
1360d710179acc80188bd04c3b3282e07a0b34fd
refs/heads/master
2022-02-26T01:40:23.540024
2019-10-31T11:43:36
2019-10-31T11:43:36
218,752,049
0
0
null
null
null
null
UTF-8
C
false
false
1,105
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strsub.c :+: :+: :+: ...
[ "noreply@github.com" ]
noreply@github.com
04cb15d9d5f0d6cf1b3fab837c0fcc81f1a417b3
b53c2594642fda642d20016238b9e9a952ab314f
/framework/targetlibs/nrf5x_12/components/libraries/log/nrf_log_backend.h
4b2987a31a8182f6e5568e15497e3dd187abfa23
[ "MPL-2.0", "ISC", "Apache-2.0", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "BSD-3-Clause" ]
permissive
bnyf/Haiway
32862c6cb70b8ab190b0f679f14345789b795c08
7f00995201c8ffde058b4323797b7866d9422ca9
refs/heads/master
2023-02-02T21:51:07.297628
2020-01-12T12:36:00
2020-01-12T12:36:00
164,182,636
0
0
MIT
2019-01-05T04:45:23
2019-01-05T04:45:23
null
UTF-8
C
false
false
3,370
h
/** * Copyright (c) 2016 - 2017, Nordic Semiconductor ASA * * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright...
[ "liyufeng614@126.com" ]
liyufeng614@126.com
426ef4a4ecdeda85b090ca3b3a7a51315ebd4e46
06a4438b52481db8dd6af95440e46d8cbfcd7b46
/Tek1/B2 - Elementary programming in C (Part I)/Lemin/src/init_cell_list.c
55dc2c904d35940f1d6aa390f866e7c03441f9ba
[]
no_license
josepvidalcanet/Epitech
f5bf3529c69fca9f10cb17f58cd82bcc076a8515
2222a7e5b433bcd847e1978b0efd813043fe01ec
refs/heads/master
2023-08-16T12:49:28.859792
2021-10-01T14:42:44
2021-10-01T14:42:44
null
0
0
null
null
null
null
UTF-8
C
false
false
321
c
/* ** EPITECH PROJECT, 2020 ** CPE_lemin_2019 ** File description: ** init_cell_list */ #include "load_graph.h" cell_t *init_cell_list(char *name, cell_t *prev) { cell_t *cell = malloc(sizeof(cell_t)); cell->name = name; cell->nb_link = 1; cell->next = NULL; cell->prev = prev; return (cell); ...
[ "pierre.jeannin@epitech.eu" ]
pierre.jeannin@epitech.eu
4aba8d45703db0d985e4f5858183b5eead3659ac
51fea12ca9f66ddf27870d00d351776fa4e21bfd
/app/src/main/cpp/include/input.h-labels.h
d3959164b316687303ccb3c2ac9e9321ecc5fd70
[]
no_license
SnowCat6/KernelGesture
2dbfa8a2185761b1a1b0eff01b9a301ca39ad7c7
332ae423de30ec118f56d9b4f525227b1fa456e6
refs/heads/master
2021-01-22T11:04:58.781640
2017-10-23T12:15:40
2017-10-23T12:15:40
92,669,739
9
2
null
null
null
null
UTF-8
C
false
false
15,402
h
static struct label input_prop_labels[] = { LABEL(INPUT_PROP_POINTER), LABEL(INPUT_PROP_DIRECT), LABEL(INPUT_PROP_BUTTONPAD), LABEL(INPUT_PROP_SEMI_MT), LABEL(INPUT_PROP_TOPBUTTONPAD), LABEL(INPUT_PROP_MAX), LABEL_END, }; static struct label ev_labels[] = { LABEL(EV_SYN), LABEL(EV_KE...
[ "snowcat@vpro.ru" ]
snowcat@vpro.ru
f642e5af298aff47b630e36c8ea37d6a6f203d63
d9b7675fd0f90e0b5ca8c081a0c22bdb214c366e
/STM32Cube_FW_L0_V1.10.0/Projects/STM32L073RZ-Nucleo/Examples_LL/USART/USART_WakeUpFromStop/Src/main.c
ba9506e76e1e19f2aba108e58e91c78c3f851838
[ "BSD-2-Clause", "MIT" ]
permissive
voltirex/stm32cube-fw-l0-v110x
d546761ccac6e7664fe3a8eb5bb6c4054ea5f9e5
28c901d0c28bf22c0dbec70b340ffcd98356da57
refs/heads/master
2020-04-02T02:29:18.820876
2018-10-20T14:06:37
2018-10-20T14:06:37
153,907,920
0
0
null
null
null
null
UTF-8
C
false
false
16,977
c
/** ****************************************************************************** * @file Examples_LL/USART/USART_WakeUpFromStop/Src/main.c * @author MCD Application Team * @brief This example describes how to configure USART peripheral in Asynchronous mode * for being able to wake from S...
[ "bmilanov@voltirex.com" ]
bmilanov@voltirex.com
927f28f38c69a64ab510552cd5ff3b442b4b53dc
8d499ee299c55674a97a94f607eabd481941c908
/src/task/schedule.c
43162f5a6f5e5aa5bbc556d551a11d2ee0ad969a
[ "MIT" ]
permissive
Smilemon/xbook2
8bef00b328544880d3309b2ea6f2d24f7771155c
1450d228ce538ae8ad1a2f96e442b8da22e06950
refs/heads/master
2023-08-28T03:39:07.784017
2021-10-25T14:18:46
2021-10-25T14:18:46
null
0
0
null
null
null
null
UTF-8
C
false
false
4,749
c
#include <xbook/schedule.h> #include <xbook/task.h> #include <xbook/clock.h> #include <assert.h> #include <xbook/debug.h> #include <arch/interrupt.h> #include <arch/task.h> #define DEBUG_SCHED 0 scheduler_t scheduler; const uint8_t sched_priority_levels[TASK_PRIO_LEVEL_MAX] = {1, 0, 1, 2, 3}; /* TODO...
[ "2323168280@qq.com" ]
2323168280@qq.com
b65f80991e37dc46781d324bfb94b996d88706fa
68451597f045921cbf6151521287f3dbcf276f5f
/P0/P0_E6/entrega/P0_E6/prodEscalar.c
9560f8ce7c70f76a930b1e674c1b524bd363b592
[]
no_license
ZnGAlex/programacion_ii
552084e8379387010899749758e7046881071712
09b15ceeae5262008725344539838c3c5ec30e25
refs/heads/master
2020-03-08T09:22:32.042751
2018-04-09T16:00:21
2018-04-09T16:00:21
128,045,614
0
0
null
null
null
null
UTF-8
C
false
false
551
c
#include "matriz.h" matriz* prodEscalar(float s, matriz *M) { matriz *aux = 0; int i; if (M != 0) { //aux = creaMatriz(M->columnas, M->filas); as filas e columnas están cambiadas de orde aux = creaMatriz(M->filas, M->columnas); for (i = 0; i < aux->filas * aux->columnas; i++) { ...
[ "zngalex96@live.com" ]
zngalex96@live.com
40eec62e99574d96c7769681a05bc1f4ba3042c8
6eae4a418410728dc606fde2577c7c96372049be
/c/dist/src/arithmetic.c
8756ae19363ae2d2af7d6fcbaef2de594bd7efbb
[]
no_license
angiebeasley/gradescope-autograder-examples
b2b2b3fa5b53a00c728deaa6bc92ddee9a8b9b46
abaf073af8a9aecda61527fb821bd44da597b327
refs/heads/master
2022-12-16T20:04:57.270703
2020-09-14T18:18:05
2020-09-14T18:18:05
null
0
0
null
null
null
null
UTF-8
C
false
false
351
c
/* * A simple arithmetic library * */ /* See arithmetic.h */ float add(float a, float b) { /* YOUR CODE GOES HERE */ /* Replace 0.0 with an appropriate value */ return 0.0; } /* See arithmetic.h */ float multiply(float a, float b) { /* YOUR CODE GOES HERE */ /* Replace 0.0 with an appropri...
[ "borja@cs.uchicago.edu" ]
borja@cs.uchicago.edu
0cbcad8e6e835707d9b09d427e3aaf65665c7417
2cb62bb59e3c4a5c5f58bf037ec948b0e242d41f
/e1000e/e1000.h
fee348dd68c5fd28a1f54b506c17e3fe9b79988e
[]
no_license
muvarov/odp-linux-mdev
2212dd8a3e57f4c255c9b418f68a3a8b37e98692
fa4f47ea925f9e28fe6c8c217d19d06a8cd392d3
refs/heads/master
2020-03-19T01:59:28.695258
2018-03-20T17:25:51
2018-03-20T17:25:51
null
0
0
null
null
null
null
UTF-8
C
false
false
18,298
h
/* Intel PRO/1000 Linux driver * Copyright(c) 1999 - 2015 Intel Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed i...
[ "ilias.apalodimas@linaro.org" ]
ilias.apalodimas@linaro.org
f898c4b878ae1a8d927cfc5b252c30411e39c03e
e53893ce84ac79344459c56324d91d1dc0375b25
/20210201/project/project/DRV/Iwdg/iwdg.h
0cec50d2fb001c0ad6b1912521fa1b5ae5366ec9
[]
no_license
roxla/STM32
1cc18ff3717d693b804cbca01051309cf995e5da
c5f87014b6a9a0f5218acca0835fef1555ee842c
refs/heads/master
2023-04-30T00:23:06.687081
2021-05-16T06:39:34
2021-05-16T06:39:34
357,802,779
0
0
null
null
null
null
UTF-8
C
false
false
65
h
#ifndef _IWDG_H_ #define _IWDG_H_ void iwdg_init(void); #endif
[ "2831104467@qq.com" ]
2831104467@qq.com
597a7a5bdd1006872855fea9f4d04c09e31422c7
f028b7d8358d6b6fda434ddce87339816fbf4db0
/defines.h
a46ed6679006a66950f5641868499791b5225bae
[]
no_license
mushtukova/GetIpAddr
d72588a63c6da545840bebc81fad70cf0c0fdc1c
2ad94064e03b147489af41788d8f1fd902bc4113
refs/heads/master
2021-01-24T08:07:27.765301
2017-06-05T07:06:19
2017-06-05T07:06:19
93,372,497
0
0
null
null
null
null
UTF-8
C
false
false
93
h
#ifndef DEFINES_H #define DEFINES_H #define LibraryName "inetmib1.dll" #endif // DEFINES_H
[ "nataly.kozhina@gmail.com" ]
nataly.kozhina@gmail.com
af1b333f16e35e241dc83da24c170b3dfa0ecab0
b28a9f8a8d2f1443cd1d3c00c0ceb240eaa939b7
/miniupnpd-1.6/miniupnpdctl.c
33b36c66a7d6d00778e768ac4ee0f80596e47d3d
[ "BSD-3-Clause" ]
permissive
iptime-gpl/userapps_v508
c9c1f5673f5237b1a1d9b6b9ed9952d90a9ee627
0e81589051c4a18eb050085993f1471fcb3af2e8
refs/heads/master
2021-09-15T00:34:57.976519
2018-05-23T01:01:19
2018-05-23T01:01:19
118,983,922
0
0
null
null
null
null
UTF-8
C
false
false
1,494
c
/* $Id: miniupnpdctl.c,v 1.1.1.1 2016/08/10 07:06:45 mt7623 Exp $ */ /* MiniUPnP project * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * (c) 2006-2012 Thomas Bernard * This software is subject to the conditions detailed * in the LICENCE file provided within the distribution */ #include <stdlib.h> #i...
[ "iptime.gpl@guu.moe" ]
iptime.gpl@guu.moe
5396bd08a7e145b134d3fb0c8b9fb2bb69b239de
114e3cf5ecb7b4b91c8b5c49297973216ab1c1b9
/C Primer Plus书本练习/第8章/8-6.c
661dec1cebc7a6c54ed3d91f938eac930b9a3035
[]
no_license
WizardWoz/Some-Codes
6cb57a44d2825881684344985c4e22dea99fef64
d2e721654dfe954d2237025c812a866d7ba50749
refs/heads/master
2021-02-28T21:40:16.053208
2020-03-21T03:35:26
2020-03-21T03:35:26
245,734,630
0
0
null
null
null
null
UTF-8
C
false
false
412
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> #include <ctype.h> #include <math.h> char get_first(char ch); int main(void){ char ch; printf("Please enter some chars,I can recognize the first char,"); printf("not space:\n"); printf("The first char is:%c",get_first(ch)); return 0; }...
[ "936728057@qq.com" ]
936728057@qq.com
b2ac5f451e8d34fb8793b206444055f43cde9767
e22879a289fb9229aaefd6716e4d6cb6f7222a7c
/Repetição/zero_e_par.c
939b21dba0d83e243ddf97f0400c63e11bf83e12
[ "MIT" ]
permissive
vtr306/fup_moodle_list
355063123797bb1c5c690cae49000800ccf9ec71
59abde65e00af1b5bc40966a84639c6c1ad0e979
refs/heads/master
2022-11-18T02:24:09.631150
2020-07-20T17:44:05
2020-07-20T17:44:05
256,867,910
0
0
null
null
null
null
UTF-8
C
false
false
323
c
#include <stdio.h> int main(){ int x,y,i, soma = 0; scanf("%d %d", &x, &y); if(x > y){ printf("invalido"); } else{ for(i = x; i <= y; i++){ if(i%2==0){ soma+=i; } } printf("%d", soma); } return 0...
[ "vitorosa306@gmail.com" ]
vitorosa306@gmail.com
2ea9fe688d311642d4003cba3d1fba3f9214f9bf
1a81861af73b305fe2e551646ca66e67f4bde460
/PROGRAM/DIALOGS/ENGLISH/OpiumBuyer.h
e25e7ac2d5586179efeccb6e2088fbe85f217799
[]
no_license
q4a/new-horizons-old
f810a29192efd635a924f1b9004a849b40e9fe20
538f46734cf1211e18b8ab265803163c4352b805
refs/heads/master
2022-11-05T06:41:45.855483
2016-09-13T18:35:42
2016-09-13T18:35:42
null
0
0
null
null
null
null
UTF-8
C
false
false
925
h
string DLG_TEXT[19] = { "I've got some wares you might want to take a look at.", "Some smuggler told me you might be interested in my services.", "Ssshtt! Don't tell others! *whispers* But he is right, though. Would you be able to fetch me some opium?", "Sure, how much do you need?", "I think I'll pass. That stuff...
[ "pieter_boelen@planet.nl" ]
pieter_boelen@planet.nl
87211ee8a89ea99a398d303f317842f3a7c3b438
e68d88f8dc9f39b774946bb2bc8f87d2e720acb2
/cards/BulkG_EXO-15-002/WW_cards_13TeV/cards_mu_LPZ/LimitResult/Lim_mu_LPZ_BulkG_WW.C
dcfe2d681613505b3b587cf00fd3d0029462161d
[]
no_license
cms-edbr/ExoDiBosonCombination
a039d0b09f27b1b4ba9c9ef0cf50e6a97aecdd3e
d684fd28492dcaa984b3a26331ed90d12708b3bd
refs/heads/master
2020-04-06T05:42:32.803701
2016-06-21T11:46:29
2016-06-21T11:46:29
32,182,220
0
1
null
null
null
null
UTF-8
C
false
false
19,326
c
{ //=========Macro generated from canvas: c2/c2 //========= (Tue Nov 24 19:26:21 2015) by ROOT version5.34/18 TCanvas *c2 = new TCanvas("c2", "c2",0,0,800,600); gStyle->SetOptFit(1); gStyle->SetOptStat(0); gStyle->SetOptTitle(0); c2->SetHighLightColor(2); c2->Range(213.75,-5.168831,4338.75,2.623377);...
[ "hinzmann@cern.ch" ]
hinzmann@cern.ch
3b8103f5be3816fa973f01a4a50d4feb2ea299b4
194d8065ac192921b2510e8372f80414c9b234a8
/TJC-024-9341-18-pin-SPI-240x320-ili9341-2.4-inch-touch/chinese-driver/51_Code/基本刷屏测试/font/font.h
2a9cb90c822a1e1d69482ac4e76b69e8ffe5bb65
[]
no_license
myelin/tiny-tft
314a596e160ff281daa602fcb77ecd6213225f9c
ee1f5ba0ec8b299ddec8aff89f2b3297f1ee8bb3
refs/heads/master
2021-01-10T19:48:04.133257
2017-07-03T23:23:30
2017-07-03T23:23:30
29,227,334
17
8
null
null
null
null
UTF-8
C
false
false
193
h
#ifndef __FONT_H #define __FONT_H extern unsigned char code image[]; extern unsigned char code hanzi[]; extern unsigned char code asc2_1608[1520]; #endif
[ "philp@mode.com" ]
philp@mode.com
69e8dc30b6727b08e4e790ee3247b3449b9aa6ca
5e7c3bf840b4428663e60d235139ae7655552cdc
/lab7Doesitwork/sensors.c
43139f0d2409c5385cf8df406f609d262933b463
[]
no_license
Austinbolinger/ECE382Lab8
82480aeba200bca6c849d0d11a3459468d543edc
371e1bb04214b7dba26eaa2279c3f8380f087f85
refs/heads/master
2020-05-21T11:39:35.894772
2014-12-12T07:12:47
2014-12-12T07:12:47
null
0
0
null
null
null
null
UTF-8
C
false
false
1,682
c
#include <msp430.h> #include "sensors.h" int left() { unsigned short sample[16]; // Just to analyze the values unsigned char i = 0; ADC10CTL0 = ADC10SHT_3 + ADC10ON; // ADC10ON, interrupt enabled ADC10CTL1 = INCH_3; // input A2 (left sensor) ADC10AE0 |= BIT3; //...
[ "c16austin.bolinger@usafa.edu" ]
c16austin.bolinger@usafa.edu
0616fdcec9d2ede4665776e8ff2aa8129ddce1b4
9f21a4925904137638aa24be875fbc6a33f696e7
/Algorithm/ThinkOflEinstein.h
4bb2aeafca6b13d7470bbdd571a4a783dc54e30a
[]
no_license
WLucky/Algorithm
7b374b55f35e07292d33f5443b3325e6e4e28541
c3242be25c4d1cea539a4266b091a6ba5dafde4d
refs/heads/master
2020-04-10T21:32:05.755241
2016-09-15T05:55:40
2016-09-15T05:55:40
68,258,534
0
0
null
null
null
null
GB18030
C
false
false
4,372
h
#pragma once /******************************************************************** FileName: ThinkOflEinstein.h Description: 爱因斯坦的思考题 Author: wangpengjun Created: 2016/9/15 12:23 *********************************************************************/ //表示属性的类型 enum ITEM_TYPE { color, nationality,drink,pet, ci...
[ "742874584@qq.com" ]
742874584@qq.com
c37bf3a7e3dd384f72e76acc2ed7fc4daeb2ab62
3c960aa39872afe187023782431ca4678d585c62
/0x05-pointers_arrays_strings/7-leet.c
eecfdfd6dc72af9d820d1379d835e0734d002ebb
[]
no_license
amlao/holbertonschool-low_level_programming
d36265a3d51401da2c9929cf9513cdc57456a742
31dc7d8349d57d97e80dcd9a0e5bc7c4fc5fb3cb
refs/heads/master
2018-11-22T16:28:34.980390
2018-09-04T08:03:44
2018-09-04T08:03:44
117,873,942
0
1
null
null
null
null
UTF-8
C
false
false
332
c
#include "holberton.h" /** * leet - encodes a string into 1337 * @s: string * Return: string */ char *leet(char *s) { int i = 0; int j = 0; char array[] = "a4A4e3E3o0O0t7T7l1L1"; while (s[i] != '\0') { for (j = 0; j < array[j]; j += 2) { if (s[i] == array[j]) s[i] = array[j + 1]; } i++; } re...
[ "anthonylao@live.com" ]
anthonylao@live.com
1b367314ea7e20b5c598011796b5aa667ab75f49
bb3b5d141fd0c9da21c8e2a6e47f5ef602e6384f
/src/rb.h
c221d5e44bd14c1390f78e74c89c66dc27004966
[]
no_license
webosce/jemalloc
1eb98d769dac417bb0295b359bb522b048cd46fb
6989d2c72b3634a07128598aa9e222636e7843a3
refs/heads/webosce
2023-05-04T11:41:47.698921
2018-03-14T04:21:13
2018-03-14T04:21:13
145,512,866
0
0
null
2023-04-25T13:37:32
2018-08-21T05:47:38
C
UTF-8
C
false
false
36,872
h
/****************************************************************************** * * Copyright (C) 2008 Jason Evans <jasone@FreeBSD.org>. * Copyright (c) 2008-2018 LG Electronics, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provi...
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
42046df355cd5009e9ebcb4096c75f66c01666f5
cd07051f8cf581cdc992e8bf4b3debbcacf25176
/EIFGENs/tictac/W_code/C9/ev1230d.c
9a1e4a4b9c5b1501e0eb9d17034cccd6cdf9c0df
[]
no_license
hasahmad/TicTacToe
4084fb44a0309ad34adb040fb88e2127984c4108
1326d6498608b62786799f46808410f8355388e4
refs/heads/master
2020-03-29T17:56:35.370256
2018-09-25T00:45:31
2018-09-25T00:45:31
150,186,619
0
0
null
null
null
null
UTF-8
C
false
false
3,389
c
/* * Class EV_ANY */ #include "eif_macros.h" #ifdef __cplusplus extern "C" { #endif static const EIF_TYPE_INDEX egt_0_1230 [] = {0xFF01,231,0xFFFF}; static const EIF_TYPE_INDEX egt_1_1230 [] = {0xFF01,247,1229,0xFFFF}; static const EIF_TYPE_INDEX egt_2_1230 [] = {0xFF01,1229,0xFFFF}; static const EIF_TYPE_INDEX e...
[ "hasahmad@Hass-MacBook-Pro.local" ]
hasahmad@Hass-MacBook-Pro.local
10e2b7db9b09dc3f9680016c09a2f3a6f65c0648
94e8344ee420ae4d2eb1643e95973845f341a3d2
/gcc_4.3.0_mutants/mutant100096_tree-ssa-forwprop.c
47eead28c6e76ca836a9c51d33d1f25ddf4474d1
[]
no_license
agroce/compilermutants
94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3
dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991
refs/heads/master
2022-02-26T21:19:35.873618
2019-09-24T15:30:14
2019-09-24T15:30:14
207,345,370
1
0
null
null
null
null
UTF-8
C
false
false
41,513
c
/* Forward propagation of expressions for single use variables. Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. This file is part of GCC. GCC 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; eith...
[ "agroce@gmail.com" ]
agroce@gmail.com
59886ffbc573dd8ce9e2bd7a50ef1df6739334e0
c0a144c9bcf49f2bc0d8a42fa12842cb6fd6a3e1
/tests/unsigned_long_long_array_tests.c
55bd832e8c9707661032bfd27736c16a5543fa72
[]
no_license
seaneshbaugh/generic_array
1517e256f8baeeb5aa2b33b9182452fb22ce5d83
ab0bcf6499514794553a96d2b242bcfd0b02082f
refs/heads/master
2020-04-29T16:22:44.815329
2014-09-12T17:00:59
2014-09-12T17:00:59
21,359,882
2
0
null
null
null
null
UTF-8
C
false
false
27,799
c
#include "unsigned_long_long_array.h" #include "unity.h" #include "unity_fixture.h" TEST_GROUP(UnsignedLongLongArrayTests); UnsignedLongLongArray unsignedLongLongArray; UnsignedLongLongArray otherUnsignedLongLongArray; TEST_SETUP(UnsignedLongLongArrayTests) { UnsignedLongLongArrayInitialize(&unsignedLongLongArra...
[ "seaneshbaugh@gmail.com" ]
seaneshbaugh@gmail.com
16a3f8fc84373a5205552df8433582891beb84a7
ff9955764e06c6ec944312a1a086c4dc451815ce
/IP-2019/Código/exercicio2ficha5.c
4115dbc327bb01d2721add8854fc4839bf71a48b
[]
no_license
franciscoruivo/isec-material
cc90c444572f368848793c94972d5a0ca478e5f4
6c53af02c217255b05b927a5d1aeb8455ab522f9
refs/heads/main
2023-06-23T14:27:33.168116
2021-07-27T21:49:49
2021-07-27T21:49:49
499,131,181
2
0
null
2022-06-02T12:43:11
2022-06-02T12:43:11
null
UTF-8
C
false
false
637
c
#include <stdio.h> int verificaLimites(int n,int sup,int inf); void main() { int num,limS,limI; char op; printf("Insira o limite inferior e superior: "); scanf("%d%d",&limI,&limS); do{ printf("\nInsira o numero: "); scanf("%d",&num); if (verificaLimites(num,limS,limI)==1...
[ "jfeaisec@gmail.com" ]
jfeaisec@gmail.com
8b2231642fc3328226ca887810eb43ae11e2d3c9
7d2a5178df248ecaad56be4dffb891cfa109896d
/PETools/WindowsTools.h
0b85c4b9a8335b2a107c994647d7a045720034a9
[]
no_license
arckiCriss/PETools
ce5845e75c3c38b2c025afdf139ef17585bcb286
12e64174e378759f4d5da5b2d9cc29ea5964bae8
refs/heads/master
2020-06-23T15:45:27.243797
2019-06-10T14:36:02
2019-06-10T14:36:02
198,667,979
1
0
null
2019-07-24T16:01:59
2019-07-24T16:01:58
null
GB18030
C
false
false
418
h
#pragma once #include "pch.h" //通过进程名打开进程 HANDLE OpenProcessByName(const TCHAR* processName, DWORD ACCESS); //提升权限(要用管理员权限运行EXE) bool Up(); //原样转换:十六进制的数和字符串 CHAR* HexToStr(DWORD srcHex); CHAR* DecToStr(DWORD srcDec); //打印十六进制数字hex和msg到OutputDebugString (四字节的hex数) void ShowDbg(const char* msgStr, DWORD hex);
[ "413884010@qq.com" ]
413884010@qq.com
582404e0cc72360e43dbbd05789dc8e3779b6aa6
d54ebb3e29aba81f1e1703bdabaa02f25faa7015
/include/test_header.h
ce0973fac9751338acd6d64add4196134461a737
[]
no_license
MusaTamzid05/RayTracer
023bcdc69703a6bfc7124ab0a2512a8f89082428
42a1dfc3baaff2c57ee8bedf0048c1a860dd2482
refs/heads/master
2023-01-02T14:23:55.940862
2020-10-21T22:50:01
2020-10-21T22:50:01
258,025,703
0
0
null
null
null
null
UTF-8
C
false
false
507
h
#ifndef TEST_HEADER_H #define TEST_HEADER_H #include <cppunit/TestCase.h> #include <cppunit/TestFixture.h> #include <cppunit/ui/text/TextTestRunner.h> #include <cppunit/extensions/HelperMacros.h> #include <cppunit/extensions/TestFactoryRegistry.h> #include <cppunit/TestResult.h> #include <cppunit/TestResultCollector.h...
[ "tamzid101@gmail.com" ]
tamzid101@gmail.com
c4b6e26b76d2e6116ed1f6f875f67169d9d64a6a
df0c6a2220e92cde8828d176ca0380b3196f388d
/CO DETECTOR SORCE - RTC/Projects/STM32L073RZ-Nucleo/Examples_LL/GPIO/GPIO_InfiniteLedToggling_Init/Inc/main.h
193db0da0d51ba3cc78df95f6a0759085f6537b1
[ "BSD-2-Clause" ]
permissive
AndyZenchonch/co-detector
f22a36dc4dc80ae3b92cf872fa96686ec13c39b6
e699e83c8d4596d7b9ca7d5628a5de5a2effed0b
refs/heads/master
2020-07-23T20:56:17.083874
2019-09-11T10:01:53
2019-09-11T10:01:53
207,702,353
0
0
null
null
null
null
UTF-8
C
false
false
3,209
h
/** ****************************************************************************** * @file Examples_LL/GPIO/GPIO_InfiniteLedToggling_Init/Inc/main.h * @author MCD Application Team * @version V1.8.0 * @date 25-November-2016 * @brief Header for main.c module ****************************************...
[ "Andy.zhou@zenhonch.com" ]
Andy.zhou@zenhonch.com
c76134486414c1c610e359a0351d59bf5c7155c1
3f4724ca578b8f87d340216e7f35456bf0ac304b
/src/include/hip/hip_proto.h
6affc30ccc6ca08451176c56f27f74efd872bfbd
[ "MIT" ]
permissive
rektide/openhip
2df9ad4179e15c9876a389cc4cb5e9db9c79054d
2ffa5a2f965612d5deff56e8993b3c923464d0f9
refs/heads/master
2016-09-05T18:17:38.213910
2015-07-29T04:30:03
2015-07-29T04:30:03
39,873,306
3
2
null
2015-10-17T00:02:48
2015-07-29T04:31:03
C
UTF-8
C
false
false
9,683
h
/* -*- Mode:cc-mode; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* vim: set ai sw=2 ts=2 et cindent cino={1s: */ /* * Host Identity Protocol * Copyright (c) 2002-2012 the Boeing Company * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documen...
[ "siliconja@4c5cb64f-9889-4596-9799-84b02dc3effa" ]
siliconja@4c5cb64f-9889-4596-9799-84b02dc3effa
d4145fe86b04415f73d49772a2750deae44675fb
7ba4d2200e0b599e4b8d5b843b85d16675f00f04
/QIE10_Testing/src/draw_map_full.h
dafe2a2db90a58ca336445eb5641745320eeaf6d
[]
no_license
ugtok/ngHCAL
f9cb1f4f6c81f489448e04557981c01b2daed349
5c0dc510f17ac8dcf59f2eb6521963bf4ab565e8
refs/heads/master
2021-01-18T15:37:32.817477
2017-02-16T15:21:54
2017-02-16T15:21:54
null
0
0
null
null
null
null
UTF-8
C
false
false
6,758
h
#include "TCanvas.h" #include "TBox.h" #include "TLatex.h" static const int HF_num = 8; static const int SL_num = 14; static const int QI_num = 24; static const int padMap[2][8] = { { 5,1,2,6,10,14,13,9 },{ 8,4,3,7,11,15,16,12 }}; int**** create_error_map(){ int**** lv2_err_map = new int***[2]; for (int ...
[ "dnoonan@cern.ch" ]
dnoonan@cern.ch
a79c6dc6d07ea3da4308c36bb6fdb275b1cf3c3f
1d928c3f90d4a0a9a3919a804597aa0a4aab19a3
/c++/Marlin/2016/8/language_an.h
9184d332f92c078b61c259c26d4caa71e9f0aea2
[]
no_license
rosoareslv/SED99
d8b2ff5811e7f0ffc59be066a5a0349a92cbb845
a062c118f12b93172e31e8ca115ce3f871b64461
refs/heads/main
2023-02-22T21:59:02.703005
2021-01-28T19:40:51
2021-01-28T19:40:51
306,497,459
1
1
null
2020-11-24T20:56:18
2020-10-23T01:18:07
null
UTF-8
C
false
false
7,853
h
/** * Marlin 3D Printer Firmware * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] * * Based on Sprinter and grbl. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General...
[ "rodrigosoaresilva@gmail.com" ]
rodrigosoaresilva@gmail.com
a625a989872560b88031570e61df90ec013cc478
6f8f35b2ab953a61eb888b6ef0915839edc8038e
/src/map/party.c
b1d8a94fddb54c7f644d42962c0d96947c178078
[]
no_license
GMVyLow/manner
8d5e34e35e8a77867afedcc9f2033be2afe47258
a9233f0a5b271761bbaa4d6667e98e04bae649ed
refs/heads/master
2021-01-10T17:33:22.031385
2015-12-20T14:43:26
2015-12-20T14:43:26
48,285,495
0
0
null
null
null
null
UTF-8
C
false
false
35,653
c
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder #include "../common/cbasetypes.h" #include "../common/timer.h" #include "../common/socket.h" // last_tick #include "../common/nullpo.h" #include "../common/malloc.h" #include "../common/random.h" #include...
[ "gmvylow@yahoo.com" ]
gmvylow@yahoo.com
c6b6499a1ad9aefeca4635a51cfec0774f8ec6e6
c6e14f68ba25b6c8a8699bebd14b6146793e59ab
/RRC/code/asn1c/IRAT-ParametersCDMA2000-HRPD.c
67a2b15cb485c7efb0294043eade6c6d86a0299a
[]
no_license
Captain-One/C_Programe
2a049e0530b863c5ffa53fc55e4f0d96b1ce116f
2c2bc608a1f42f7ecf95e049cf48e45fdf090889
refs/heads/master
2021-07-13T14:49:09.308017
2020-06-16T06:49:46
2020-06-16T06:49:46
136,001,747
0
3
null
null
null
null
UTF-8
C
false
false
13,727
c
/* * Generated by asn1c-0.9.28 (http://lionet.info/asn1c) * From ASN.1 module "EUTRA-RRC-Definitions" * found in "36331-b00.asn" * `asn1c -S /usr/local/share/asn1c -fcompound-names -fskeletons-copy -gen-PER -pdu=auto` */ #include "IRAT-ParametersCDMA2000-HRPD.h" static int tx_ConfigHRPD_3_constraint(asn_TYPE_d...
[ "pxqjoe@sina.com" ]
pxqjoe@sina.com
1cd354e9b40645986bfc0c9821f5961c32a026d5
553ab8c15213304523962c94f875f262d4988bc2
/S5/prog_para/tp/exam2020/exo3.c
f8a8b55f142083eb30c7ab888a4f8e3061d3661f
[]
no_license
arxaqapi/licence-info
d352c7ae1534dc2c32a89a096fb7ed5880ecd2c9
32b349ef5dea96d8aa0ad5e7187af88fcd4c73c0
refs/heads/master
2021-06-11T06:19:50.541029
2021-04-30T22:28:05
2021-04-30T22:28:05
167,515,246
0
1
null
null
null
null
UTF-8
C
false
false
732
c
#include <omp.h> #include <stdio.h> #include <string.h> int main(void) { int n = 1000; int C[n + 1][n + 1]; memset(C, 0, sizeof(C[0][0]) * (n+1) * (n+1)); #pragma omp parallel for num_threads(4) for (int i = 0; i <= n; i++) { C[i][0] = 1; C[i][i] = 1; } // #pragma omp p...
[ "arxaqapi@protonmail.com" ]
arxaqapi@protonmail.com
a4b438cacec0abecbfd4bc4d49c7d63cdf3db8f2
6e0c0ced674ed8ff3bfe20fd85b420d31bd06093
/srcs/reader_plus.c
55ed016d3009e8decddaf8cb9ffcd7454656eab6
[]
no_license
hecubauller/push_swap
7e08b8be07cb9971fbb41e462ef38534a5defd7c
ef4ea0b5b23db410c009ed4b09054f73160286d3
refs/heads/master
2020-07-02T09:21:29.792356
2019-10-02T05:43:29
2019-10-02T05:43:29
201,483,262
0
0
null
null
null
null
UTF-8
C
false
false
2,822
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* reader_plus.c :+: :+: :+: ...
[ "monina20155@gmail.com" ]
monina20155@gmail.com
44e3c2f04be6434acf85e204bc2cd1eb9b9d0b57
9cff9488ca090460b675d74528861eadc5b55249
/Chapter10/Exercise10_01.c
2ebe2e512bbbeada21f8c7274018a354f6c1e2d7
[]
no_license
AndrewMagdyGad/C-Primer-Plus
6bfc96b2a850f71e4dff4eeb3be5486ee3f68f7b
8a3f5f87fc755e5a58f9edee7f8002f248797c6b
refs/heads/master
2021-10-07T09:53:08.191915
2021-09-30T22:17:48
2021-09-30T22:17:48
209,302,452
0
0
null
null
null
null
UTF-8
C
false
false
1,315
c
/* * Exercise10_01.c * * Created on: Jun 22, 2020 * Author: andrew */ #include <stdio.h> #define MONTHS 12 #define YEARS 5 int main(void) { const float rain[YEARS][MONTHS] = { {4.3, 4.3, 4.3, 3.0, 2.0, 1.2, 0.2, 0.2, 0.4, 2.4, 3.5, 6.6}, {8.5, 8.2, 1.2, 1.6, 2.4, 0.0, 5.2, 0.9, 0.3, 0.9,...
[ "andrewmagdygad@gmail.com" ]
andrewmagdygad@gmail.com
7c06d64569f584ee4460d813da0762d4edeccd96
775e18988cfaf67fa980a755177abd8dc7cc66dd
/Reciever/Spi_Config.h
e97d9c5ac6f25aa1470d50212571b97cde2fa498
[]
no_license
mahmoudashraf211/Project
03e03fb44e6c85c01d6eb27c10254107463122e3
5b85829dfddd93e99fb028f01c2b4d5a1bd051f8
refs/heads/main
2023-04-05T01:18:53.857968
2021-04-09T23:27:46
2021-04-09T23:27:46
356,340,067
1
0
null
null
null
null
UTF-8
C
false
false
372
h
/* * Spi_Config.h * * Created: 4/6/2021 5:10:49 PM * Author: 20111 */ #ifndef SPI_CONFIG_H_ #define SPI_CONFIG_H_ #include "CPU_CONFIG.h" #define MASTER 1 #define SLAVE 0 #define MOSI 5 #define MISO 6 #define CLK 7 #define SS 4 #define SPI_PORT DDRB #define SPI_MODE SLAVE typedef enum { SPI_NOK= 0 ,...
[ "mahmoudashraf211@gmail.com" ]
mahmoudashraf211@gmail.com
1eb7419a1b16d232fb14c516447a42e28f627c83
97658e79ac16e36dfad8055c4d19e08be61f4234
/linux/provevarie/esercizi/programmi/esercizi_sito/potenzedi2/pot.c
c59f2ea7507a100617d9ee48120cbc9d00ca30dd
[]
no_license
DavideB45/DavideUnipi
09eca33fb2d82f4e43baf23a3c36d016036e4ecb
c3c498c8d4b45f7d554f1748e1c78d0e368b9004
refs/heads/master
2021-07-12T10:26:52.778423
2020-11-09T13:07:40
2020-11-09T13:07:40
221,219,602
0
0
null
null
null
null
UTF-8
C
false
false
462
c
#include <stdio.h> int pot2(int n, int tot); int read_positive_int(void); int main(void){ int n; n = read_positive_int(); printf("%d\n", pot2(n, 1)); return 0; } int pot2(int n, int tot){ if(n==0){ return tot; } else{ tot = tot*2; return pot2(n-1, tot); } } int read_positive_int(void){ int n; while...
[ "dadewww@gmail.com" ]
dadewww@gmail.com
75e334d561d9665f7ed4348fa4915519dfafb1c3
b5506f3b30d64d8d001bd371ff19c2c3b0de21b0
/source/hamming.c
2b2a667576234250ac8f1fc94e6b9ee1d5a71026
[ "LicenseRef-scancode-other-permissive", "mpich2", "CC-BY-4.0" ]
permissive
Scrembetsch/MultiModal_pgapack
6f34374dfea668113575ea952cc78142cb9d6b9a
de671a8d3f228ef9d32faff4df6d663d405a9a69
refs/heads/main
2023-04-27T15:37:12.167704
2021-05-18T10:25:15
2021-05-18T10:25:15
368,472,529
0
0
null
null
null
null
UTF-8
C
false
false
4,816
c
/* COPYRIGHT The following is a notice of limited availability of the code, and disclaimer which must be included in the prologue of the code and in all source listings of the code. (C) COPYRIGHT 2008 University of Chicago Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute ...
[ "harald.tributsch@outlook.com" ]
harald.tributsch@outlook.com
373042a894d3257b961ce7278caba8ea0c0c1315
7265a1a2fe30a888303a99563a3c93bd09de3985
/src/test/pmem2_source_alignment/pmem2_source_alignment.c
37545a138b4cd18eebbf6cbaf547f4b07c1af6d1
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
rff/pmdk
002eee0f143bc46ee62ffc2104384307b9d0402a
12356154903781da3c2376d87a0c247088cc6c23
refs/heads/master
2020-11-25T00:03:46.811843
2020-03-17T11:19:47
2020-03-17T11:19:47
228,399,389
0
0
NOASSERTION
2020-01-15T11:29:23
2019-12-16T13:59:27
null
UTF-8
C
false
false
1,566
c
// SPDX-License-Identifier: BSD-3-Clause /* Copyright 2019-2020, Intel Corporation */ /* * pmem2_source_alignment.c -- pmem2_source_alignment unittests */ #include <fcntl.h> #include <stdint.h> #include <sys/stat.h> #include <sys/types.h> #include "libpmem2.h" #include "unittest.h" #include "ut_pmem2_utils.h" #inc...
[ "piotr.balcer@intel.com" ]
piotr.balcer@intel.com
7e552cab45f83a1f19c950cc6d37bb1a84b4f7a4
1447927a9f7034953e0a74c2998d2ef5e90f9e48
/libs/libtowel/srcs/twl_xstdlib/twl_randint.c
74fc9017666c92cb9a7fb571c26ec1ef1e3924c5
[]
no_license
Thaeroon/RT
a397d66d2a39179ee027186ce01ea89d36a5de16
af8fd9bf1b5eaa33d5400169f4dba3fbca70f6df
refs/heads/master
2020-03-07T19:54:17.145298
2018-04-26T22:06:48
2018-04-26T22:06:48
126,860,904
0
0
null
null
null
null
UTF-8
C
false
false
1,035
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* check_norris_loves_the_norminette.c :+: :+: :+: ...
[ "nmuller@e2r5p14.42.fr" ]
nmuller@e2r5p14.42.fr
59480e8d5fc4a990de33a66c850523aa9db0f182
b111b77f2729c030ce78096ea2273691b9b63749
/perf-native-large/project534/src/testComponent414/headers/testComponent414/lib13.h
e4ef6526e6645763ac95f0376428725dd0e6e32b
[]
no_license
WeilerWebServices/Gradle
a1a55bdb0dd39240787adf9241289e52f593ccc1
6ab6192439f891256a10d9b60f3073cab110b2be
refs/heads/master
2023-01-19T16:48:09.415529
2020-11-28T13:28:40
2020-11-28T13:28:40
256,249,773
1
0
null
null
null
null
UTF-8
C
false
false
167
h
#ifndef PROJECT_HEADER_testComponent414_13_H #define PROJECT_HEADER_testComponent414_13_H int testComponent414_13(); #endif // PROJECT_HEADER_testComponent414_13_H
[ "nateweiler84@gmail.com" ]
nateweiler84@gmail.com
b0977973e2a621e89257e46fff6857de28c3431c
dc2c0e015b3ca7d49fd77ebf3d4511a7338e74b9
/Assignment2/sample/LYDB-master/defs.h
b838a5c810858e8dc91e089cf8efe937263fba78
[]
no_license
rhf0410/COMP9315
2ff70d8ee2d684bbf9e90a33dd7bb1889cdfcf94
41d5f72184c3f4ff839b9da8359c16a597eadaa5
refs/heads/master
2021-05-16T23:31:04.007981
2020-03-27T11:29:14
2020-03-27T11:29:14
250,516,673
3
3
null
null
null
null
UTF-8
C
false
false
710
h
// defs.h ... global definitions // part of Multi-attribute Linear-hashed Files // Defines types and constants used throughout code // Written by John Shepherd, April 2016 #ifndef DEFS_H #define DEFS_H 1 #include <stdlib.h> #include <stdio.h> #include <string.h> #include <assert.h> #include "util.h" #define PAGESIZE...
[ "rhf0410@gmail.com" ]
rhf0410@gmail.com
c7dd6b5d564a8fd67b5c7e312887fd6af1d4da82
3b2f7f5727028931edf46d97dc40f6ed30a4abba
/examples/testbed_native_ios/Pods/Headers/Public/React/RCTAnimation/RCTAnimationUtils.h
cc0a53808f6b57e22599b8127d678dbd0ce81c9c
[ "MIT" ]
permissive
myboost/react-native-branch-deep-linking-attribution
e0ed526b9d50752e7c94577574baff59d516e478
e93d8802ceb159ee7806b804b60d7861fd536c01
refs/heads/master
2020-12-15T19:24:58.366784
2020-01-21T01:16:43
2020-01-21T01:16:43
235,228,684
0
0
MIT
2020-01-21T01:01:52
2020-01-21T01:01:51
null
UTF-8
C
false
false
86
h
../../../../../node_modules/react-native/Libraries/NativeAnimation/RCTAnimationUtils.h
[ "jgvdthree@gmail.com" ]
jgvdthree@gmail.com
af31a98ef5e1c7e1ca8ae3c3a60f8afb4236d7ec
0ce735bca910363a7eaa65d455af01fa6a0de086
/process_ipc/popen_2.c
afec984f056fc2fe390d0fce7029f6419175a6a4
[ "MIT" ]
permissive
meghana-linux/c-practice
2b6010d931c23f00501cacf8e3d73b64b471d2ab
c5580622918fd535cafbf24ffd2612f05cd73cd0
refs/heads/master
2020-03-08T10:18:26.984512
2019-09-19T01:29:22
2019-09-19T01:29:22
128,069,760
0
0
null
null
null
null
UTF-8
C
false
false
937
c
#include <stdio.h> int main(int argc, char *argv[]) { FILE *pipe_fp, *infile; char readbuf[80]; if( argc != 3) { fprintf(stderr, "USAGE: popen3 [command] [filename]\n"); exit(1); } /* Open up input file */ if (( infile = fopen(a...
[ "laurent.thomas@open-cells.com" ]
laurent.thomas@open-cells.com
c891bcc4f454c9066bf40329a0bf2d8ba1f27e34
a1446c3f95df2dfe097a9bd6b463767b00f18140
/sys/dev/ic/comvar.h
3e80241e9f25757048e1abc78c66e79abef2dc65
[]
no_license
chrissicool/l4openbsd
e2fb756debc1c3bdc1c2da509fa228c25a3185e8
077177814444e08500e47bc2488502f11469bc60
refs/heads/master
2021-04-09T17:12:53.122136
2011-08-22T16:52:58
2011-08-22T16:52:58
1,706,491
18
4
null
2017-04-06T19:17:29
2011-05-05T14:08:03
C
UTF-8
C
false
false
6,431
h
/* $OpenBSD: comvar.h,v 1.50 2010/08/06 21:04:14 kettenis Exp $ */ /* $NetBSD: comvar.h,v 1.5 1996/05/05 19:50:47 christos Exp $ */ /* * Copyright (c) 1997 - 1998, Jason Downs. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that t...
[ "cludwig@net.t-labs.tu-berlin.de" ]
cludwig@net.t-labs.tu-berlin.de
f8a7f7da59674239ae582ac8f3111f8ee54052cf
06f72327ef69d3afab12be10d80d58548cd3b270
/code/mutants_b747cl/T0/b747cl_824.c
da646eda6f019a8e105fb69f23b4ba34d8572f98
[]
no_license
unl-nimbus-lab/CE_Mutation
69df4c5e6f4b0a4eea41b3e04805b1613a02b9b4
76d69ca6005469cfe831ad309ce1636cf3da83c4
refs/heads/master
2021-05-17T03:16:55.496590
2020-03-27T16:57:12
2020-03-27T16:57:12
250,591,613
0
0
null
null
null
null
UTF-8
C
false
false
61,212
c
/* * b747cl.c * * Academic License - for use in teaching, academic research, and meeting * course requirements at degree granting institutions only. Not for * government, commercial, or other organizational use. * * Code generation for model "b747cl". * * Model version : 1.189 * Simulink Coder v...
[ "jbradley@cse-jbradley-09.local" ]
jbradley@cse-jbradley-09.local
e1b4fcd8ade715c3c08276a1fd4c4e734b283b55
8352d0e9d93b67b72e0a398c2e2fa5d6d8499cb9
/5.1/interfaces/openSSL/include/openssl/engine.h
b3b78080166943dea1b7f7d3597ac6d8217f3f6a
[]
no_license
thunderZH963/exata-app
d561b4987864c501ba0aff6c8f166c9cc0f268b7
d158783613b91d5a4780a9973423029b1d64947c
refs/heads/main
2023-01-13T16:05:03.191297
2020-11-18T03:05:38
2020-11-18T03:05:38
313,181,752
0
0
null
null
null
null
UTF-8
C
false
false
41,733
h
/* openssl/engine.h */ /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL * project 2000. */ /* ==================================================================== * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or wi...
[ "zhanghua19990421@buaa.edu.cn" ]
zhanghua19990421@buaa.edu.cn
2590f730f4698fa86233afacdd8701d4a2d4520d
4d0db586e0c2f5bc90876880c8ba8551d604b0d3
/Temp/StagingArea/Data/il2cppOutput/t1210MD.h
b9bfcdf6f484495060a9e3024e9b2afcd980b5e1
[]
no_license
Dwarph/SpaceInvaders
3ba670da67f962e13aa6d7532d444a379ce36b93
59625044233e8b85fbb3849b07f9e6fcbf64bd01
refs/heads/master
2021-01-18T20:27:42.523283
2018-03-03T16:24:13
2018-03-03T16:24:13
72,147,597
1
0
null
null
null
null
UTF-8
C
false
false
432
h
#pragma once #include <stdint.h> #include <assert.h> #include <exception> #include "codegen/il2cpp-codegen.h" struct t1210; struct t1208; #include "t1209.h" extern "C" t1208 * m5170 (t7 * __this , int32_t p0, const MethodInfo* method) IL2CPP_METHOD_ATTR; extern "C" t1208 * m5171 (t7 * __this , const MethodInfo* meth...
[ "pipturner@outlook.com" ]
pipturner@outlook.com
e7f39d0dae7552d925a8df96889d8c844b430e75
a073ba435ac5ac987c16abe5fd1491ac24be9cbd
/sjtwo-c/toolchains/windows/mingw/include/oleacc.h
bed683a937b9a887b382fa3da145213028cca9d6
[]
no_license
ChrisFSF/CMPE146-MP3-project
f2fb34c89e84126b67ef184dfaa966a122a63c9b
e1f40417d0a98521dba06e0b7c169cecb4aa6340
refs/heads/master
2023-02-09T06:15:42.240261
2021-01-07T01:48:20
2021-01-07T01:48:20
261,683,682
4
2
null
2020-05-08T21:08:42
2020-05-06T07:28:23
C++
UTF-8
C
false
false
8,460
h
#ifndef _OLEACC_H #define _OLEACC_H #if __GNUC__ >=3 #pragma GCC system_header #endif #ifdef __cplusplus extern "C" { #endif #define DISPID_ACC_PARENT (-5000) #define DISPID_ACC_CHILDCOUNT (-5001) #define DISPID_ACC_CHILD (-5002) #define DISPID_ACC_NAM...
[ "814218674@qq.com" ]
814218674@qq.com
bbba760e3fbbf772ba255cdfeb4595979a7d496e
6f2eccc98594abb6f1d811a89d438f2b46207370
/2/program_practice_2_6.c
417b0e2adeb4ecb506c833e79914452bc89c3181
[]
no_license
octay/program_practice_hdu
1855bbc3dda0230882f57ba2e1f323724d3895b2
8da1d0279fd9c20bc5672ca57a9203f5c0412ddb
refs/heads/main
2023-08-28T01:08:46.925721
2021-10-13T06:25:34
2021-10-13T06:25:34
354,863,776
8
3
null
null
null
null
UTF-8
C
false
false
3,026
c
# include<stdio.h> # include<stdlib.h> # define MAX 100 struct maze{ int r, c; int inr, inc; int outr, outc; int map[MAX][MAX]; int count; }; void initlist(struct maze *p, int r, int c, int inr, int inc, int outr, int outc); void dfs(struct maze *p, int curr, int curc); void print_map(st...
[ "noreply@github.com" ]
noreply@github.com
0f73035f6ac17f00590ca2f5309faecb1a13254d
0811739e6df5d373a8765abb55b3ca107752d406
/new_emi/25.c
b6881e4cb1d1ccbd26bc54ba1e0a075226073998
[]
no_license
hz90937880/NewDecFuzzer
12981d53dd64e9a4ef881d4879b7abb3050ff849
dcef22907354415c0f4fdce8a102f0dc71844eba
refs/heads/master
2023-04-15T18:04:11.235871
2021-03-25T21:32:01
2021-03-25T21:32:01
351,564,252
0
0
null
null
null
null
UTF-8
C
false
false
8,395
c
/* * This is a RANDOMLY GENERATED PROGRAM. * * Generator: csmith 2.3.0 * Git version: unknown * Options: --no-arrays --no-structs --no-unions --no-safe-math --no-pointers --no-longlong --max-funcs 1 --max-expr-complexity 5 --output ./tmp/src_code/csmith_test_1447.c * Seed: 3224376083 */ #define NO_LONGL...
[ "1429408028@qq.com" ]
1429408028@qq.com
d34ccb4de4ce0d77e62dfcea29fafd9192c84d56
c8d179bf5fd5d9a8584851dd97204ae1a6f9c7d6
/LPC2148/_Módulos do ARM LPC2148/delay_loop.c
baa5259b6290e81381956d45177a0e193a8632d0
[]
no_license
dtgmariano/ARM-101
63ea0ae59b8f32e97508376b2955a6bbe757de3e
cab7e55232af9225e20dede423e5954c7c1782c1
refs/heads/master
2020-04-24T23:18:13.367098
2014-11-06T13:01:31
2014-11-06T13:01:31
null
0
0
null
null
null
null
UTF-8
C
false
false
5,062
c
/* =============================== C/C++ HEADER FILE ================================ */ /** \file \description \copyright (c) LASEC www.lasec.feelt.ufu.br */ /* ================================================================================== */ /* CHANGES: --------------- Date Author Descriptio...
[ "dtgm@uol.com.br" ]
dtgm@uol.com.br
e3c79922641d08ed2b1b08d83c542441d4ac4086
eb8fde6e6405474ec76bdaf2c2fdb148f8a6c9ba
/drivers/pmc0/fsl_pmc0.h
6d5b2413c932a0c1a5afd7b6c677abeb9a2b6995
[]
no_license
jsplyy/mcu_project_generator
50cd791a20e4e28c738125e8cbde50845645d5dd
e9b510c963a837a447ee83e933316f7a5248b780
refs/heads/master
2021-01-22T21:45:53.918445
2017-03-19T12:30:22
2017-03-19T12:30:22
85,473,423
0
0
null
null
null
null
UTF-8
C
false
false
26,326
h
/* * Copyright (c) 2016, Freescale Semiconductor, 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: * * o Redistributions of source code must retain the above copyright notice, this list...
[ "jingsai.lu@nxp.com" ]
jingsai.lu@nxp.com
d509956d68d73f350eb718fd6cbfe55171856cc0
ee07b0939e44ae827c515769226aa1706b4ad3d7
/allocate.c
3d18e0ba8ad63e578dde798af5c1c9fc543c3ba8
[]
no_license
deerishi/project_copy_from_hg
3abd11777241b48c9ba958e5b8b8f0a6f5a31b29
5251357a5e9a694a995e8f959f0237492e41f19c
refs/heads/master
2021-01-10T11:53:35.812794
2015-10-06T22:26:40
2015-10-06T22:26:40
43,782,453
0
0
null
null
null
null
UTF-8
C
false
false
13,687
c
/* * Allocation functions * * Copyright (c) 2014, 2015 Gregor Richards * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PR...
[ "deerishi@gmail.com" ]
deerishi@gmail.com
cd1ee511ff5540870e14ab60f3aaf86089f7f5a1
e5289e0780eee7014a2aa699f9f211590fbb770e
/filesystem/sysvbfs/bfs.h
f69f97eb6247d0dc7fcc123ad24838db7ea00a77
[ "BSD-2-Clause" ]
permissive
uchiyama-yasushi/w
2abf502d8a84d896a5546dd04d081b2ad4ec7627
0323a5aa450bea7cebfedc72c7977086c4796f3b
refs/heads/master
2020-03-28T03:50:42.574025
2018-09-12T13:11:07
2018-09-12T13:11:07
147,675,353
0
0
null
null
null
null
UTF-8
C
false
false
6,270
h
/* $NetBSD: bfs.h,v 1.5 2008/04/28 20:24:02 martin Exp $ */ /*- * Copyright (c) 2004, 2009 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by UCHIYAMA Yasushi. * * Redistribution and use in source and binary forms, with or without ...
[ "uch@vnop.net" ]
uch@vnop.net
4027b23d58c96e0077b9d36c4620ebd2c81bd828
caf580ccc995f584ea91413da65d135490a92ef5
/Ch02/dayofyear/dayofyear.c
cc28057bd1ddcd8a0e6e2b3e007454938b3eebaf
[]
no_license
traceimp/DoitDSAndAlgorithmC
573723dd75a4e3ed96ddd873d56755ace9ec0f07
80cd54313ce07e6875c4afa20bac18bf1462e389
refs/heads/master
2020-03-23T14:22:56.490360
2018-08-28T11:57:28
2018-08-28T11:57:28
141,672,475
0
0
null
null
null
null
UHC
C
false
false
1,010
c
// 날 짜: 08/22/2018, 16:02 // 작성자: Kim92 // 내 용: 한 해의 지난 날 수를 구합니다. #include <stdio.h> // 각 달의 날 수 int mdays[][12] = { {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} }; // year이 윤년인가? int isleap(int year) { return year % 4 == 0 && year % 100 != 0 || year % 400 ...
[ "traceimp@outlook.kr" ]
traceimp@outlook.kr
230dec7e521bcf64a777ae7274a474141164ee8e
eb41e276803f31882f01edf70f77059755ea47ec
/examples/stampaIstogramma.c
9e519ae739ea02257da3f70467122fa231673560
[]
no_license
kr0bi/Exercises-using-C
2d5ddef1e3f4ba90e646fca22d102b35a002350c
69800e6a20a14a9d86dc4dfc9a611c03af78f0f7
refs/heads/master
2020-04-30T04:11:51.659663
2019-06-06T21:11:54
2019-06-06T21:11:54
176,605,682
0
0
null
null
null
null
UTF-8
C
false
false
836
c
#include <stdio.h> /* Scrivere un programma C che stampi un istogramma orizzontale (utilizzando il carattere ’-’) raffigurante le lunghezze delle parole (delimitate da whitespace characters) immesse sullo standard input (parola per parola). */ int main(){ int c = getchar(); int isPreced...
[ "krobi@cock.li" ]
krobi@cock.li
1d83d5c40ce7ef5241fa594dfd026a15c8198440
150fea402de8b29fabdea9ba7e9be0d198530e8c
/src/python/face-expression.build/module.numpy.polynomial.chebyshev.c
747827fb5281258c116e659f04612e085fe3d89d
[]
no_license
Coderwelsch/FHP-IO-Expression-Mirror
189cc667e2a4671c4e6bf0d7651665eb1a76367b
dbd0c59c64c8058e283fa7fe4fe2a611c22f511a
refs/heads/master
2021-06-15T21:39:32.011057
2017-04-22T15:45:14
2017-04-22T15:45:14
null
0
0
null
null
null
null
UTF-8
C
false
false
1,187,181
c
/* Generated code for Python source for module 'numpy.polynomial.chebyshev' * created by Nuitka version 0.5.24.4 * * This code is in part copyright 2016 Kay Hayen. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obta...
[ "social@coderwelsch.com" ]
social@coderwelsch.com
e08843e82cd7101cb9bcafa576fc0a07e01037b5
185569156deda92d94de5711867c9fe7821520f4
/src/core/param/common_list.h
a1101f3220c618182e976443a8773f7558ebb529
[ "GPL-3.0-only" ]
permissive
ChangChiaChengcccc/ncrl-flight-control
445d88fe8f5d9624c970ba2e79a1967184f538ca
95494bfdba567b9d2eee7766c3f08f6534cf37c4
refs/heads/master
2023-02-26T07:21:59.519292
2022-08-31T08:33:34
2022-08-31T08:33:34
327,806,290
0
0
BSD-2-Clause
2021-01-08T05:20:45
2021-01-08T05:20:45
null
UTF-8
C
false
false
4,217
h
#ifndef __COMMON_LIST_H__ #define __COMMON_LIST_H__ enum { /********************************************* * ncrl flight controller defined parameters * *********************************************/ IMU_FINISH_CALIB = 0, ROLL_ANG_OFFSET, PITCH_ANG_OFFSET, /***************************** * px4 compatible par...
[ "c.shengwen.tw@gmail.com" ]
c.shengwen.tw@gmail.com
e617bcdfd894f187e9c2288f421ffb6a579e8b3b
193847f25b25719db0cb8c289b3acffcc3a67ff5
/Mita_Playground/imadder/isim/imgadder_test_isim_beh.exe.sim/work/a_1483785689_3212880686.c
4ca94f15e4dff564fc4fc6391a70e8738f67b274
[]
no_license
dragutinv/Robotics-Project
7d625615a8a96f60ef6e9d6406d1653e2b0272a8
3e2ed8f8aecd8c266d89a09add90644c8cd2b67d
refs/heads/master
2021-03-19T15:21:39.571072
2015-12-07T13:41:04
2015-12-07T13:41:04
42,600,576
0
0
null
null
null
null
UTF-8
C
false
false
3,545
c
/**********************************************************************/ /* ____ ____ */ /* / /\/ / */ /* /___/ \ / */ /* \ \ \/ ...
[ "pramita.winata@gmail.com" ]
pramita.winata@gmail.com
15b707aca2058e0d96acfa8b7d630ca4bd925816
fd2c2a430e4622c5419458d493cf21d074e1120d
/Pods/Target Support Files/Pods/Pods-environment.h
70b81e0166ec86d849c873da68d31fa390156011
[ "MIT" ]
permissive
carabina/BFPaperView
54ed68722bbea674994cfac059224ce563cf4348
58e0999137252c3cce04df8d7067b30bef63cd04
refs/heads/master
2021-01-17T11:14:57.238127
2015-02-03T00:45:44
2015-02-03T00:45:44
null
0
0
null
null
null
null
UTF-8
C
false
false
475
h
// To check if a library is compiled with CocoaPods you // can use the `COCOAPODS` macro definition which is // defined in the xcconfigs so it is available in // headers also when they are imported in the client // project. // UIColor+BFPaperColors #define COCOAPODS_POD_AVAILABLE_UIColor_BFPaperColors #define COCOAP...
[ "ben.feher@gmail.com" ]
ben.feher@gmail.com
d85ccd6fd0b398beeb6a3ef510d82cc00794d20e
bb108c3ea7d235e6fee0575181b5988e6b6a64ef
/mame/src/emu/sound/aicalfo.c
664eded91ad48832f5643ecf2beb4ca564e32cf8
[ "MIT" ]
permissive
clobber/MAME-OS-X
3c5e6058b2814754176f3c6dcf1b2963ca804fc3
ca11d0e946636bda042b6db55c82113e5722fc08
refs/heads/master
2021-01-20T05:31:15.086981
2013-04-17T18:42:40
2013-04-17T18:42:40
3,805,274
15
8
null
2013-04-17T18:42:41
2012-03-23T04:23:01
C
UTF-8
C
false
false
3,409
c
/* AICA LFO handling Part of the AICA emulator package. (not compiled directly, #included from aica.c) By ElSemi, kingshriek, Deunan Knute, and R. Belmont */ #define LFO_SHIFT 8 struct _LFO { unsigned short phase; UINT32 phase_step; int *table; int *scale; }; #def...
[ "brymaster@gmail.com" ]
brymaster@gmail.com
750c567cea746f37dc5eb6473cab85ca5e033356
6432ffa0649947cdb0c2045a3a7b2b2bee27e8c2
/d/changan/northroad2.c
289c8e0e9153d7bc7234fba3120c21833c64f9ec
[]
no_license
MudRen/xkx100
f2e314a542e459502e28f311cd9f20ee7f7c6f43
dfca57e056460d7c0532a6e19a5e4add94a5588d
refs/heads/main
2022-03-05T00:08:01.398338
2022-01-25T09:00:27
2022-01-25T09:00:27
313,971,845
6
3
null
null
null
null
UTF-8
C
false
false
624
c
// /d/changan/northroad2.c inherit ROOM; void create () { set ("short", "北大街"); set ("long", @LONG 你正走在长安北大街上。西边是一家钱庄,可以听到叮叮当当的金 银声音。东边个兵营,长安守军驻扎在内,不时传来操练之声。 LONG); set("exits", ([ //sizeof() == 4 "west" : __DIR__"qianzhuang", "east" : __DIR__"bingying", "north" : __DIR__"northroad1", "sout...
[ "freddy.chua@ey.com" ]
freddy.chua@ey.com
47dda066c5b21f10e5312f1802c52569e4debcce
39a71ea97e43cf4b369dc01f4b9498761c2eec8a
/project2/xv6-public/vm.c
8e4b67c414c9733e1197856e082970398515e4b8
[ "MIT" ]
permissive
ClearSky-S/HYU-2020-Operating-System
deac575cd196a87aa44f88f55493fd0823948032
e625af61e9c117feba37b9d8b28fcca4360511fd
refs/heads/master
2023-04-19T05:40:23.872158
2020-11-27T17:21:11
2020-11-27T17:21:11
null
0
0
null
null
null
null
UTF-8
C
false
false
13,878
c
#include "param.h" #include "types.h" #include "defs.h" #include "x86.h" #include "memlayout.h" #include "mmu.h" #include "proc.h" #include "elf.h" extern char data[]; // defined by kernel.ld pde_t *kpgdir; // for use in scheduler() // Set up CPU's kernel segment descriptors. // Run once on entry on each CPU. void ...
[ "crorowslowpp@gmail.com" ]
crorowslowpp@gmail.com
81e1e2f024c6d951fcec87c3304e81c3523b05a5
7244aae24f6a5f7376501ffb4ca743c65dddb074
/replay/scripts/FADC_decode/CodaDecoder.C
ee3a0cdf2c1c1b3eccf32b9cfd0e858d29dcf1a1
[]
no_license
tgdragon/HallA-Online-Tritium
59f61eb6ae299d8c816e436dbdf0ef18901a7447
c01f776e56cc895d976c028e90ef2c660f1abbaa
refs/heads/master
2020-03-23T06:09:52.193630
2018-10-15T15:14:38
2018-10-15T15:14:38
141,192,611
0
2
null
2018-07-16T20:46:27
2018-07-16T20:46:27
null
UTF-8
C
false
false
19,833
c
//////////////////////////////////////////////////////////////////// // // CodaDecoder // // Object Oriented version of decoder // Sept, 2014 R. Michaels // ///////////////////////////////////////////////////////////////////// #include "CodaDecoder.h" #include "THaCrateMap.h" #include "THaBenchmark.h" #incl...
[ "hanjie@jlab.org" ]
hanjie@jlab.org
c81e297f99ac3ac2957797960dcc35bca88cd2d5
7780840808aaaa44897c26c2b999e21ade8fe73d
/challenges/binary/PU_casella/chall.c
67234168e2e682b9c88020f17b98fb48d568e56d
[]
no_license
born2scan/dantectf-21
3f998794b2510409432cc2d58d862f3ff28440c0
93744a37805c805490cc299f6e5358f1c632f518
refs/heads/master
2023-05-27T23:18:26.903813
2021-06-23T13:02:01
2021-06-23T16:09:49
379,599,823
0
0
null
null
null
null
UTF-8
C
false
false
1,710
c
#include <stdio.h> #include <stdlib.h> #include <string.h> void get_flag(char flag[57]) { char s1[] = "VQ[DQcR\x7f}Melyxl}Lav{Hw~cw`jwLgmq}\x7f|Fs\x7f{\x7fOsyMtG{xruczx\x7fxe"; char s2[] = "31415926535897932384626433832795028841971693993751058209"; for (int i = 0; i < 56; i++) { flag[i] = (char)(s...
[ "48256294+beryxz@users.noreply.github.com" ]
48256294+beryxz@users.noreply.github.com
713d3662be81fdda737fa297349a7d0f8ec40fe9
cfff53bed3091b4a1ce4e4d5506ae395ef08e2b2
/CM7/Hardware/Screen/image/BatteryImages.h
69291dbe73c865bf40f8386e417beb558470a423
[]
no_license
nadavguy/SelfDriving
79fa9993bc92ccb2999a2fe8cc937af5762b1ee4
6857adac6b3749270b34890e81d9b60de60359c6
refs/heads/main
2023-08-31T22:54:45.281259
2021-10-24T17:43:16
2021-10-24T17:43:16
371,081,188
0
0
null
null
null
null
UTF-8
C
false
false
882
h
/* * BatteryImages.h * * Created on: Apr 6, 2021 * Author: gilad */ #ifndef SCREEN_IMAGE_BATTERYIMAGES_H_ #define SCREEN_IMAGE_BATTERYIMAGES_H_ extern const unsigned char gImage_RC_Battery_Charging[]; extern const unsigned char gImage_RC_Battery_Full[]; extern const unsigned char gImage_RC_Battery_Medium[...
[ "raingrey@gmail.com" ]
raingrey@gmail.com