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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0513e83acf5d276621d3b24ce04db41a729a39b5 | 1ee5a51b6e253ce570a2f81eb6ed02093cd9c12c | /src/precon/lis_precon_iluc.c | 043e2f8363312bc82fd61b593fd537f90b59eb30 | [
"BSD-2-Clause"
] | permissive | anishida/lis | b728df8300baad6396c85c68a77920f40597a95a | 23bded36b4a4664d9ab2babcaeb1f86ac7cb27a0 | refs/heads/master | 2023-07-07T09:38:40.904631 | 2023-06-14T00:37:11 | 2023-06-14T00:37:11 | 28,014,292 | 98 | 39 | NOASSERTION | 2019-01-30T13:13:23 | 2014-12-15T00:57:06 | C | UTF-8 | C | false | false | 68,033 | c | /* Copyright (C) 2005 The Scalable Software Infrastructure 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:
1. Redistributions of source code must retain the above copyright
notice... | [
"nishida@ssisc.org"
] | nishida@ssisc.org |
2169ab9a35b0fd8d98ce49b985a4b420511a48b4 | 19cd87c46d877333454bb82f14512f9b13714a0d | /source/utils/AsmJit/core.h | 09532fd8c8d6074f9cda059556a13019093da092 | [
"Zlib"
] | permissive | TheMrIron2/DeSmuME-PSP | 7cd3296d67874865b28f996ed6089ec680621c6e | 28cb56ece0e7378e75e78c01e57de7f569672803 | refs/heads/master | 2022-05-07T12:20:59.981897 | 2021-03-14T03:15:59 | 2021-03-14T03:15:59 | 144,074,778 | 91 | 17 | null | 2020-11-27T23:24:15 | 2018-08-08T22:38:05 | C++ | UTF-8 | C | false | false | 858 | h | // [AsmJit]
// Complete JIT Assembler for C++ Language.
//
// [License]
// Zlib - See COPYING file in this package.
// [Guard]
#ifndef _ASMJIT_CORE_H
#define _ASMJIT_CORE_H
// [Dependencies - AsmJit]
#include "core/build.h"
#include "core/assembler.h"
#include "core/assert.h"
#include "core/buffer.h"
#include "core/... | [
"dwelch.appleid@gmail.com"
] | dwelch.appleid@gmail.com |
0be4360ccad6f9d3f1adf887821020524529e5d4 | 0ed3a95250bab04f122084d3ab6d45bd91e62aac | /算法/排序算法/侏儒排序/c/main.c | 1615420b55be9474784283264c1bc61134befdbf | [] | no_license | ixysoft/notes | 394c71754007950efa6d32fce8b81c482ae80156 | cf38fa8a82357a49e36b80f1d5ec7a334ca45dcb | refs/heads/master | 2021-08-16T03:01:20.223389 | 2020-07-21T06:06:32 | 2020-07-21T06:06:32 | 205,130,379 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 679 | c | #include<stdio.h>
#define swap(a,b) {int tmp=a;a=b;b=tmp;}
void gnome_sort(int arr[],int size){
int pos = 0;
while(pos < size){
if(pos == 0 || arr[pos] >= arr[pos-1]) pos++; //此处应该为>=,而不是>.否则有相同元素的情况下,会陷入死循环
else{
swap(arr[pos],arr[pos-1]);
pos--;
}
}
}
i... | [
"1340058590@qq.com"
] | 1340058590@qq.com |
768736f32d77ada4b5659704b2e415922d1b5bde | 1f8f9483e22fc287e691cc553597aa8b0a269387 | /src/queue/ringbuffer.c | e1542342a2b653d404a882a301d041fcc156b900 | [] | no_license | takuyaw-w/algorithm-and-data_structure | 39677b8e6a003400371dbab5ef8c8aa37a983f08 | 431b37decc9233dbb9e8d33f21af1a1b40929b1e | refs/heads/main | 2023-06-19T19:42:37.124674 | 2021-07-15T13:47:40 | 2021-07-15T13:47:40 | 385,255,025 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,412 | c | #include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
typedef long ELEM; /* 要素の型 */
#define QUEUE_SIZE 100 /* リングバッファの大きさ */
ELEM queue[QUEUE_SIZE];
int front; // 先頭
int rear; // 末尾
#define next(a) (((a) + 1) % QUEUE_SIZE) // 次の要素のインデックスを求める
void printError(char *s) {
fprintf(stderr, s);
exit(1);
}
void i... | [
"takuya.jamtb@gmail.com"
] | takuya.jamtb@gmail.com |
39cc3cddab438cb60d5bc21dbaaae84a405c58ee | b8741d89d478dc77bbdbabc5afd38631011d43ed | /libft/srcs/core/ft_atoi.c | 7cfda1275cd078f7656bfe74e3ae167ab2d2800b | [] | no_license | cbcercas/Libcbc | 5f583c63879de374a7321bb878f7fbe0dd463bec | 495e8a10d3d0c6e612c07655ebcf6a501b13f288 | refs/heads/master | 2021-08-31T09:02:34.563425 | 2017-12-20T21:16:23 | 2017-12-20T21:16:33 | 92,526,167 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,323 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: ... | [
"christopher@cercas.fr"
] | christopher@cercas.fr |
683a007cc8e21b5d5373d44bfec38f50b963aa42 | 285934d4f53fdfd9a5ae472930b7b8ff40ffed35 | /ccrightri.c | a89470297220c35f31e386b4fb55c02fe023e593 | [] | no_license | fagan2888/Competitive-Programming | 235079360ce09418ad79c6d1af5b177c22156e63 | 8daaa6dbb8ec5e5fb37d7c2f0611df81c4e16da0 | refs/heads/master | 2020-12-12T02:19:58.366015 | 2016-10-21T14:03:02 | 2016-10-21T14:03:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 755 | c | #include<stdio.h>
int main()
{
int t,count=0;
scanf("%d",&t);
while(t--)
{
int x[3],y[3],i;
double m1,m2,m3;
for(i=0;i<3;i++)
{
scanf("%d%d",&x[i],&y[i]);
}
if((x[0]-x[1])!=0)
{
m1=(double)(y[0]-y[1])/(x[0]-x[1]);
}
else
{
m1=1000000.0;
}
if((x[1]-x[2])!=0)
{
m2=(double)... | [
"Rishabh Misra"
] | Rishabh Misra |
8622bf0ff6c49f9efd1e8ab81755e7a3e9a9cdac | b8177a047c5afee833737ac8fa233accb7c13820 | /main/peripherals/uart_driver.c | f3c0ae57c5858f1ee21a4aaeae40129c15213cc8 | [] | no_license | Maldus512/motore-trifase | 45977b9e63d0e4ac9a2ca7b26b7c996c4f47bed0 | ce5c701d2fa76ee9db26b46f75a7d26d394af35f | refs/heads/main | 2023-08-14T16:28:57.181594 | 2021-09-15T15:15:27 | 2021-09-15T15:15:27 | 340,678,856 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,367 | c | /*
* Driver per il modulo UART
*/
#include "hardwareprofile.h"
#include "system.h"
#include <pps.h>
#include <stdint.h>
#include <string.h>
#include "gel/timer/timecheck.h"
#include "timer.h"
#include "uart_driver.h"
#define UART_BUFFER_SIZE 512
#define UART_BUFFER_RX 300
//#define UART_TIMEOUT 100
#define UAR... | [
"virginia.negri@studio.unibo.it"
] | virginia.negri@studio.unibo.it |
6f5d2c2f76118ac4def9ba3cf64b784794840e25 | a280aa9ac69d3834dc00219e9a4ba07996dfb4dd | /regularexpress/home/weilaidb/software/ffmpeg-3.2.2/libavcodec/vdpau_internal.h | 50f83968fac5f7950afbda62f6d69e65e651607a | [] | no_license | weilaidb/PythonExample | b2cc6c514816a0e1bfb7c0cbd5045cf87bd28466 | 798bf1bdfdf7594f528788c4df02f79f0f7827ce | refs/heads/master | 2021-01-12T13:56:19.346041 | 2017-07-22T16:30:33 | 2017-07-22T16:30:33 | 68,925,741 | 4 | 2 | null | null | null | null | UTF-8 | C | false | false | 351 | h | #define AVCODEC_VDPAU_INTERNAL_H
ff_vdpau_get_surface_id
union VDPAUPictureInfo ;
typedef struct VDPAUHWContext VDPAUHWContext;
typedef struct VDPAUContext VDPAUContext;
struct vdpau_picture_context ;
ff_vdpau_common_init;
ff_vdpau_common_uninit;
ff_vdpau_common_start_frame;
ff_vdpau_common_end_frame;
ff_vdpau_mpeg_e... | [
"weilaidb@localhost.localdomain"
] | weilaidb@localhost.localdomain |
8ff8e5959531210a9dd33a8b49c9b7da63915076 | 6d3f469b85a4c06bc860a5700b22f233bece6a50 | /driver/aktypes.h | 01a2047192a70664c6ce04681fcf0e136ac36a66 | [] | no_license | paulopezzetti/akerclient-linux64-fix | 7dd841fc61d3cf9550b239b89cf66a46d8ab5261 | 177fc4c80c06166e8a4b8161611348eef2a23180 | refs/heads/master | 2023-03-23T04:27:29.862589 | 2018-01-24T11:47:45 | 2018-01-24T11:47:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,089 | h | /* aktypes.h - Definicoes de tipos multiplataforma dos programas Aker
22/01/2002 Criacao Rodrigo Ormonde
Versao 5
$Id: aktypes.h,v 1.17 2012/10/11 19:31:48 pedro.rogerio Exp $
*/
#ifndef _AK_TYPES_H
#define _AK_TYPES_H
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
/*! Definicoe... | [
"root@hermes-linux.at.home"
] | root@hermes-linux.at.home |
1367fe7bb94e85c5990fbcc76ade3c6f9fc456f4 | 64b463cff5c30337ffaed4c153c172b81d9aa820 | /f280x_common/include/gpio.h | 662aa146c77f02bbbd600a9292268241ee3b1589 | [] | no_license | jiuzhuaxiong/f280x_driverlib | b4c3b0c8f147987bc788d504e273aaace2d2d187 | ee61415a0fdda6862dd39129f0803cb4321f6a93 | refs/heads/master | 2021-05-27T19:02:55.937348 | 2014-02-02T21:13:04 | 2014-02-02T21:13:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 21,750 | h | #ifndef _GPIO_H_
#define _GPIO_H_
//#############################################################################
//
//! \file f280x_common/include/gpio.h
//!
//! \brief Contains public interface to general purpose I/O (GPIO) methods
//
// Group: C2000
// Target Device: TMS320F280x
//
// (C... | [
"mouse@yandex-team.ru"
] | mouse@yandex-team.ru |
320010332d46c75bc1ab419c6ac4edd35c05d528 | 1fc98a8366a2ac09c8fa7d552b9409a6f8f09b06 | /hw12-sorting-hashing.c | d07b2fa835c6be63fe5d3a54ae84eeb656c91997 | [] | no_license | mwj1205/hw12 | 442e1f68f6c852aad45aa3df1d8951e574136cdc | 6c23d5e132613868b073a9fc04868706c1e16f40 | refs/heads/master | 2023-04-25T17:27:04.009202 | 2021-05-28T06:33:51 | 2021-05-28T06:33:51 | 370,231,994 | 0 | 0 | null | null | null | null | UHC | C | false | false | 9,931 | c | /*
* hw12-sorting-hashing.c
*
* Created on: May 22, 2021
*
* Homework 12: Sorting & Hashing
* Department of Computer Science at Chungbuk National University
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define MAX_ARRAY_SIZE 13 /* prime number */
#define MAX_HASH_TABLE_SIZE MAX_ARRAY_SI... | [
"mwj1205@naver.com"
] | mwj1205@naver.com |
3c49e5c7049b292a141ec3e244c050acf18658bc | 22b2af30bfc6f9de75989002bb97b137e5a9419e | /edk2/Build/NT32X64/DEBUG_VS2017/X64/MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib/DEBUG/AutoGen.h | 26fdcb0f2c99b68a2a9797467944d87db539ddb2 | [
"BSD-2-Clause",
"OpenSSL"
] | permissive | 923571390/UEFI-GAME-SNAKE | 8996ce56241f0dd2f92f85e9d4a4b0c41c13cb23 | 44d5d39c4c1d222dd4dd9d8d5285b6bdf681f0fa | refs/heads/master | 2020-04-14T15:59:51.932120 | 2019-01-03T08:29:25 | 2019-01-03T08:29:25 | 163,941,523 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 818 | h | /**
DO NOT EDIT
FILE auto-generated
Module name:
AutoGen.h
Abstract: Auto-generated AutoGen.h for building module or library.
**/
#ifndef _AUTOGENH_387A2490_81FC_4E7C_8E0A_3E58C30FCD0B
#define _AUTOGENH_387A2490_81FC_4E7C_8E0A_3E58C30FCD0B
#ifdef __cplusplus
extern "C" {
#endif
#incl... | [
"923571390@qq.com"
] | 923571390@qq.com |
282b705f1c6ed130a1bac5932ad764cdb4295452 | 657f8fdac1f94b977de636a5a0feaaf325342ee2 | /client/.dist/main_multicast.c | b9c2a77c01441d952613c9c8d152db81dc3e4f57 | [] | no_license | lee-ggong/LWS-RBS | 41152f5f47f13dfbfb70e78688777636436f28f6 | a3cca3367717d1d829f8e97bc28f996b7061cd29 | refs/heads/master | 2023-04-02T18:02:14.547006 | 2021-04-08T10:45:26 | 2021-04-08T10:45:26 | 276,624,295 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,512 | c | //CLIENT SOCKET
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <unistd.h>
#include <stdint.h>
#define MULPORTNUM 9005
#define TPPORTNUM 9000
#define BROADNUM 10
int main(void) {
... | [
"lwsang21@naver.com"
] | lwsang21@naver.com |
57a18c6204a5cc4767a8fea5e113070bab39fec5 | 0db580bc61780d0cea8b6f4ed1e9f6bd6a9296bf | /src/init.c | 96347c260cc5333abb87d0deb96a9a31363351ac | [] | no_license | cran/reglogit | 60f217e1de92432dc0669fe41c0c33b2dde9eef6 | 2d19b31353b36bda9defbb7cfaf0d6f54440abe7 | refs/heads/master | 2023-04-28T03:30:48.885731 | 2023-04-25T06:40:02 | 2023-04-25T06:40:02 | 17,699,113 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,056 | c | #include <stdlib.h> // for NULL
#include <R_ext/Rdynload.h>
/* FIXME:
Check these declarations against the C/Fortran source code.
*/
/* .C calls */
extern void deleteRNGstates(void);
extern void draw_lambda_R(void *, void *, void *, void *, void *, void *, void *, void *, void *);
extern void draw_omega_R(void *,... | [
"csardi.gabor+cran@gmail.com"
] | csardi.gabor+cran@gmail.com |
97b1c5ef1361e0400e6e3fd35a72471ff3b67228 | f1d39c056d00ee1eb96a888ec7818e921c8dc83e | /exercise4/exercise4_src/bus_cx/adder.h | 67424e268d2c370c9cf7d98c88e49b96ef829158 | [] | no_license | SeverinDavis/MSS | afb8023d1e9348a8de55397f4ed8ac2283749e2f | f6100039de99c03503f1e8d8278716b00aecec42 | refs/heads/master | 2020-06-28T02:48:17.157744 | 2017-07-13T05:43:12 | 2017-07-13T05:43:12 | 97,084,250 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 238 | h | // file adder.h
#ifndef _ADDER_H_
#define _ADDER_H_
#include "systemc.h"
SC_MODULE(Adder)
{
sc_in<int> x;
sc_in<int> y;
sc_out<int> s;
void add();
SC_CTOR(Adder)
{
SC_METHOD(add);
sensitive << x << y;
}
};
#endif
| [
"severin.davis@gmail.com"
] | severin.davis@gmail.com |
4b926be19f2eb0f70831b79199de57d3af25fd35 | 8adab1e7c9a3db7906bb9f83b0e37d4abafdb50a | /keyboards/keebio/bdn9/keymaps/eosti/config.h | 4ba28f26a8655e28b6001c3bdd3c5292c45be88d | [
"GPL-2.0-only",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause",
"GPL-3.0-or-later",
"LGPL-2.0-or-later",
"LGPL-2.1-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"GPL-1.0-or-later",
"GPL-3.0-only"
] | permissive | fzf/qmk_toolbox | d7975c0d6af28c19957b57c6f5976ad9b8173c4d | 10d6b425bd24b45002555022baf16fb11254118b | refs/heads/master | 2022-09-05T11:51:53.952007 | 2020-06-03T09:31:26 | 2020-06-03T09:32:27 | 269,046,233 | 0 | 0 | MIT | 2020-06-03T09:30:37 | 2020-06-03T09:30:36 | null | UTF-8 | C | false | false | 25 | h | #define TAPPING_TERM 175
| [
"git@zvecr.com"
] | git@zvecr.com |
09611a0f531c4eff2200d282a44a60c079bd67ba | fc7dbcb3bcdb16010e9b1aad4ecba41709089304 | /IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/PeiSmbusLib.c | da227f30b111fea6208042f495327c27a2fce3a4 | [] | no_license | Itomyl/loongson-uefi | 5eb0ece5875406b00dbd265d28245208d6bbc99a | 70b7d5495e2b451899e2ba2ef677384de075d984 | refs/heads/master | 2021-05-28T04:38:29.989074 | 2010-05-31T02:47:26 | 2010-05-31T02:47:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,697 | c | /** @file
Implementation of SmBusLib class library for PEI phase.
Copyright (c) 2006 - 2008, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompan... | [
"xiangy@lemote.com"
] | xiangy@lemote.com |
d6bf3565000b0f425e622b4f7551ab93d8bdfa38 | 166011d4b675de6c40e0aa7160d7d2f5f3139a8c | /src/guiText.c | 3d6506cd2569d86c24bda5d6b13dc768cd240f9e | [] | no_license | 8426THMY/SDLOpenGLBase | d74da5ac08243d27b3b318f4bac5958b1ae2d648 | d7026bc7ddbc5c4deced04ef92aac162efce01ac | refs/heads/master | 2023-03-05T12:34:30.333598 | 2023-02-28T12:50:09 | 2023-02-28T12:50:09 | 144,557,532 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,286 | c | #include "guiText.h"
#include <stddef.h>
#define GLEW_STATIC
#include <GL/glew.h>
#include "vec2.h"
#include "rectangle.h"
#include "transform.h"
#include "texture.h"
#include "guiElement.h"
void guiTextInit(guiText *const restrict gui, const textFont *const restrict font, const size_t bufferSi... | [
"8426THMY@gmail.com"
] | 8426THMY@gmail.com |
884ac491665aa41dac2a3b3b579455204e00ee05 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/b87fbf10-699c-4ff0-95ca-aede8c7f36c3.c | 015b44b9a51771ac4029b6324c065b2c330d8a93 | [] | 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 | 531 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=0;
int j=32;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = i/j;
l = i%j;
l = k-j;
k = k-k*i;
//variables
/* START VULNERABILITY */
int a;
int b[61];
int c[9];
a = 0;
do {
/* STAR... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
92070d3bdc2050c4b25da22d2b7b706e1a0795c6 | 22c3bf6aade6bab9f240b9302f9761294df2d6a6 | /MMB/Mamabao/ASWXHeader.h | f2c49a6d4527be8a0f7c32d0ffd535e8fb2a07bb | [] | no_license | oumai/MMB | b4e0aa0be7eadd89952a727d3e5737475efa9004 | 9fc2524fcf518fc21b6bbe2dafc729f9a549a7c9 | refs/heads/master | 2021-01-19T21:58:21.455002 | 2017-04-19T09:44:42 | 2017-04-19T09:44:42 | 88,727,981 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,204 | h | //
// ASWXHeader.h
// AngelSound
//
// Created by jumper on 14-12-23.
// Copyright (c) 2014年 Jumper. All rights reserved.
//
#ifndef AngelSound_ASWXHeader_h
#define AngelSound_ASWXHeader_h
#define BASE_URL @"https://api.weixin.qq.com"
/**
* 微信开放平台申请得到的 appid, 需要同时添加在 URL schema
*/
#define WXAppId @"wx6b4e648d23... | [
"O15827428871@gmail.com"
] | O15827428871@gmail.com |
bff7b4110b968eee6da166e633b4864f265b8c9c | f6f8833ccf537ffa97e03b08607e92312bad996b | /callback.c | fc15e2212e7dfea564b141bee0f94b925689a13d | [] | no_license | ystar2016/PacketCapture | d2b72df288c14497396b06514f511641bcd5d0c6 | a23cce6dcc9629ec065b951f58d72c6ad7420a1f | refs/heads/master | 2020-04-08T07:28:09.200131 | 2016-11-28T03:06:56 | 2016-11-28T03:06:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,713 | c | #include "callback.h"
static int number = 0;
void tls_protocol_packet_callback(u_char *argument, //arguments pass by user
const struct pcap_pkthdr *packet_header,
const u_char *packet_content)
{
}
void tcp_protocol_packet_callback(u_char *argument, //arguments pass by user
const struct... | [
"765512740@qq.com"
] | 765512740@qq.com |
1c66c61f9fd15b04d4faf46e600315469737c698 | 8020382e0fef4c88461dcc707b9780f6c4027838 | /Projects/STM32F769I_EVAL/Examples/PWR/PWR_STANDBY_RTC/Src/stm32f7xx_it.c | 001613ca1dc567e9a2a848ae88ea5949d3a189c1 | [
"BSD-2-Clause"
] | permissive | ghsecuritylab/STM32_Cube_F7 | 4de70ea1be9a08e043632d14cf7d35b9128a418c | 2147c24a0cbccfae331ca18a519f8ff6b91e860f | refs/heads/master | 2021-03-01T17:56:24.377267 | 2017-12-05T14:27:52 | 2017-12-05T14:27:52 | 245,803,945 | 0 | 0 | null | 2020-03-08T11:43:37 | 2020-03-08T11:43:36 | null | UTF-8 | C | false | false | 5,741 | c | /**
******************************************************************************
* @file PWR/PWR_STANDBY_RTC/Src/stm32f7xx_it.c
* @author MCD Application Team
* @version V1.3.0
* @date 30-December-2016
* @brief Main Interrupt Service Routines.
* This file provides template for a... | [
"trent.gill@gmail.com"
] | trent.gill@gmail.com |
92d16394fd3c6e55db254469e8946b29d846c713 | bf342ac904169fe9dc8214a0b42e3dda489c8c36 | /solver/imstat.c | a78c33933c50592520c4ddd637716785a6bee448 | [
"BSD-3-Clause",
"GPL-3.0-or-later",
"GPL-1.0-or-later",
"GPL-3.0-only"
] | permissive | indigo-astronomy/astrometry.net | e69badfe1c7ac3a2649ad8e7e156ef2d1b0401df | af221e050fe1b570fddaf0b816869d6fe50cfba6 | refs/heads/master | 2023-02-15T17:59:26.481003 | 2021-01-06T21:44:27 | 2021-01-06T21:44:27 | 326,466,189 | 1 | 0 | BSD-3-Clause | 2021-01-03T17:46:41 | 2021-01-03T17:46:40 | null | UTF-8 | C | false | false | 3,577 | c | /*
This file was downloaded from the CFITSIO utilities web page:
http://heasarc.gsfc.nasa.gov/docs/software/fitsio/cexamples.html
That page contains this text:
You may freely modify, reuse, and redistribute these programs as you wish.
We assume it was originally written by the CFITSIO authors (primarily William
... | [
"dstndstn@gmail.com"
] | dstndstn@gmail.com |
3daf62faa6f064961ac0b860a6b9c590db8e2249 | fa177ad80480d651a4a27d9ba46e544db1f9cf36 | /all in one-EMW3162/mxchipWNet Pro Demo@EMW316x/Demos/Demo2_TCP_IP_Stack/HTTP/flash_configurations.h | 65b1cfc9589dd7b11c4d720cace16f128f5731be | [] | no_license | netstv/STM32F | a58f4d2497d91c1bb20dd7f676c9dd35b3f40b12 | 7ab63041f81bab20d9fbf82e8c7e22bb5c5382c1 | refs/heads/master | 2020-12-28T22:22:07.699247 | 2014-12-30T01:33:21 | 2014-12-30T01:33:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 468 | h | #ifndef __FLASH_CONFIGURATIONS_H
#define __FLASH_CONFIGURATIONS_H
#include "flash_if.h"
#include "mxchipWNET.h"
#define MAGIC_FLAG 0x12345678
#pragma pack(1)
typedef struct _config_ {
/*OTA options*/
boot_table_t bootTable;
u32 magicNumber;
/*User configurations*/
char wifi_ssid[32];
c... | [
"willemwouters@gmail.com"
] | willemwouters@gmail.com |
5473ba56c948202f1d57eeea85a8d297153bf1b2 | 09371dc944dc0a211145307e83e6b5cbae05f35d | /src/output/code_objects/synapses_3_pre_push_spikes.h | 7de06d16ff7133ac1aff40ab680eb4a9dd9c05c1 | [] | no_license | ptolmachev/brainstem_simulation | 405f5eac91f3d898c60d86e0508e123ad4d0c8a7 | a43537b77b0aabc4fcf149e78cb7bc0ffb46e637 | refs/heads/master | 2023-03-01T02:22:54.603101 | 2021-02-10T07:51:25 | 2021-02-10T07:51:25 | 122,162,692 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 140 | h | #ifndef _INCLUDED_synapses_3_pre_push_spikes
#define _INCLUDED_synapses_3_pre_push_spikes
void _run_synapses_3_pre_push_spikes();
#endif
| [
"beatadecay1993@gamil.com"
] | beatadecay1993@gamil.com |
9d4bc0cb518569e7ca3422e1468f8fb1128aa050 | eea89835bb3eb8fe48674f0f0e938cbca614c779 | /20200518/src/mv_multivector_main.c | 740ac92b55cb1a579d5edb428bea2da6e1729cfa | [] | no_license | nicolas42/clang | d88d5ac1da9e680761adf9151c2cf246efc9a6f3 | 07d945b4ce6cec6b34ec36a409975bb03363e676 | refs/heads/master | 2020-07-16T10:29:15.065261 | 2020-06-20T05:22:44 | 2020-06-20T05:22:44 | 205,771,445 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,783 | c | #include "mv_multivector.h"
int main(void)
{
#define TAU 6.28318530718
// #include "multiline_string_literal.h"
// printf("%s", multiline_string_literal);
mv_arena_make(1000);
mv_t v,a,b,r,spinor,spinor1,spinor2;
v = mv_vector(1,0,0);
a = mv_vector(1,0,0);
b = mv_vect... | [
"nicolas42@gmail.com"
] | nicolas42@gmail.com |
30ba0f3d5ca3e3ae8eaed5df0d8b21c948fb2da9 | d7dfbb75cdd89f3c722362b9b67b1ef3f54cf9b5 | /atm/atm/withdrawal.c | 2338f6ef1de3ef2c230cc583f07a32134659d69f | [] | no_license | twawaa/VC- | 693315a029422c8643b5a16c2a78c916f874cfc2 | af082d3199fbab3b1ad917a9afe831f181324d7d | refs/heads/master | 2022-11-13T03:30:27.150723 | 2020-07-07T15:27:38 | 2020-07-07T15:27:38 | 276,772,968 | 0 | 0 | null | null | null | null | SHIFT_JIS | C | false | false | 2,179 | c | /******************************************************/
/* お引出し画面制御用プログラム */
/******************************************************/
#include "atm.h"
#include <stdio.h>
#include <Windows.h>
// お引出し画面
// 戻り値:1=引出し完了 / 0=取引終了
unsigned char withdrawal(FILE* fp, USER* user)
{
unsigned c... | [
"tokura_0521@outlook.jp"
] | tokura_0521@outlook.jp |
052245b2cb556436cf574e4f6e7d680bee64faa4 | b43c11d6a447800226431151fcfe0fc7ec20af5c | /domino/src/domino/do_report_view.h | 1bb215f62f1a63b48fb0cb4f423bca6d46ac3198 | [] | no_license | mirror-partorg/domino | 33eee2ec08d8edda5f0917f05d6e9577f3f13eb7 | 00cfd472edcba5e6a4170b5a7d2e8898fe391694 | refs/heads/master | 2023-07-10T05:21:58.372574 | 2023-07-06T02:37:54 | 2023-07-06T02:37:54 | 200,995,679 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,119 | h |
#ifndef DO_REPORT_VIEW_H
#define DO_REPORT_VIEW_H
#include <gtk/gtk.h>
#include "do_tree_view.h"
G_BEGIN_DECLS
#define DO_TYPE_REPORT_VIEW (do_report_view_get_type ())
#define DO_REPORT_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), DO_TYPE_REPORT_VIEW, DoReportView))
#define DO_REPORT_VIEW_CLASS(k) ... | [
"mirror@database.apteka.glekar.ru"
] | mirror@database.apteka.glekar.ru |
76d1582a3734288be2efb2bfc089b0f20b9c8f16 | fe30528f554d3f1b417132791220d253c52b6b5b | /Codeforces_c/Team.c | 5e6e1ecb27c93710b351f636c5ff5a35d2a7016e | [] | no_license | koustav2001/Codeforces | 5609658b25c7304185deff7d5cce339c113aa405 | 69a4b44febbecf8eaf46d079dc39ad03c9ab57ff | refs/heads/main | 2023-08-02T01:44:52.651108 | 2021-10-08T16:56:44 | 2021-10-08T16:56:44 | 402,493,654 | 0 | 1 | null | 2021-10-08T16:56:45 | 2021-09-02T16:42:13 | Python | UTF-8 | C | false | false | 242 | c | #include<stdio.h>
int main()
{
int n,a,b,d,s=0,c=0;
scanf("%d",&n);
while(n--)
{
scanf("%d %d %d",&a,&b,&d);
if(a==1)
c++;
if(b==1)
c++;
if(d==1)
c++;
if(c>=2)
s++;
c=0;
}
printf("%d\n",s);
}
| [
"noreply@github.com"
] | koustav2001.noreply@github.com |
9d6a584d56c54b878391e56524c72fcccbe393aa | cf71e4f8e3f2d87abb22e5a69da2ae9fa7551c86 | /New Unity Project/ios version/Classes/Native/mscorlib_System_Array_InternalEnumerator_1_gen_64.h | b8a204080bc4ccdb19c7f4a85f611ca5d631eb09 | [] | no_license | liamzebedee/hackagong2015 | 1a28c80caa9fbc69b007d0d1eae1d69c6565a87a | 3c3b560df9619ca76d7efc348796001a6bb5eeeb | refs/heads/master | 2021-01-13T01:30:09.952383 | 2015-09-19T16:18:55 | 2015-09-19T16:18:55 | 42,692,533 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 472 | h | #pragma once
#include <stdint.h>
// System.Array
struct Array_t;
// System.ValueType
#include "mscorlib_System_ValueType.h"
// System.Array/InternalEnumerator`1<System.Text.RegularExpressions.Mark>
struct InternalEnumerator_1_t2284
{
// System.Array System.Array/InternalEnumerator`1<System.Text.RegularExpressions.M... | [
"liamzebedee@yahoo.com.au"
] | liamzebedee@yahoo.com.au |
1eacb5abbf80898c6babbdc474470669b9fe1d20 | fa3129b3ec206f20dc50e5b5071d97837eb6d7a4 | /5주차/과제/practiceNo7.c | 143cff9b3267f0d89906f2e2e025eec3f01aa434 | [] | no_license | ssoaora/C_Lang_Study | d55c462761d01703feda52e3730cda323f907391 | 95780dc2edafa363e6bec69994d51b1b6e6e94c9 | refs/heads/main | 2023-09-02T22:29:32.892874 | 2021-11-17T13:53:26 | 2021-11-17T13:53:26 | 412,699,247 | 0 | 0 | null | null | null | null | UHC | C | false | false | 343 | c | #define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main(void)
{
int year;
int budget = 1000000;
double rate = 0.045;
printf("예치 기간 입력(년) >> ");
scanf("%d", &year);
double total = budget * (1 + (rate * year));
printf("이율: 4.5%% 총금액: %.2lf", total);
return 0;
}
| [
"noreply@github.com"
] | ssoaora.noreply@github.com |
d54d203e4ae0573eebca37dcaf085a8516cdfedc | 1d2701990c2075e25b813abaf70ad6f2d71fc44d | /carcode/src/remoteserver.h | b063c764dde0a67fab93c877c52b0fa8aa88875f | [] | no_license | ds0l/SmartCar | f1624c6a2ea5df2733e2d1683c678a4fecf79a02 | 444c06058ad6f0dd6553796db1fba4a9d4f852a1 | refs/heads/master | 2020-12-03T02:06:54.900092 | 2017-07-08T22:17:10 | 2017-07-08T22:17:10 | 95,906,788 | 0 | 0 | null | 2017-06-30T21:15:01 | 2017-06-30T16:39:32 | Java | UTF-8 | C | false | false | 218 | h |
struct motionstate {
unsigned int left:1;
unsigned int forward:1;
unsigned int right:1;
unsigned int back:1;
};
int updateCarMotion(void);
int updateCarState(char command);
| [
"privacyisnot@gmail.com"
] | privacyisnot@gmail.com |
9134fb1884908c1513922d3a0ead7045d8f649d9 | de8c0ea84980b6d9bb6e3e23b87e6066a65f4995 | /3pp/linux/drivers/mfd/mcp-sa11x0.c | 98fa0af0e56ebf0af18124a36b7fef6531b230d2 | [
"MIT",
"Linux-syscall-note",
"GPL-2.0-only"
] | permissive | eerimoq/monolinux-example-project | 7cc19c6fc179a6d1fd3ec60f383f906b727e6715 | 57c4c2928b11cc04db59fb5ced962762099a9895 | refs/heads/master | 2021-02-08T10:57:58.215466 | 2020-07-02T08:04:25 | 2020-07-02T08:04:25 | 244,144,570 | 6 | 0 | MIT | 2020-07-02T08:15:50 | 2020-03-01T12:24:47 | C | UTF-8 | C | false | false | 7,032 | c | // SPDX-License-Identifier: GPL-2.0-only
/*
* linux/drivers/mfd/mcp-sa11x0.c
*
* Copyright (C) 2001-2005 Russell King
*
* SA11x0 MCP (Multimedia Communications Port) driver.
*
* MCP read/write timeouts from Jordi Colomer, rehacked by rmk.
*/
#include <linux/module.h>
#include <linux/io.h>
#include <linux/er... | [
"erik.moqvist@gmail.com"
] | erik.moqvist@gmail.com |
95e37060e51417ce9d6c90b4b66d34f51d0bec34 | 584a643bf56f05c916ee6ce36e58ee118cc6f765 | /sdk/iot-device-sdk-embedded-c/src/libiotc/iotc_tuple.h | d76f71e9fba268f2426426c5bc29c6f6ee724555 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | pradeepmcp/smart_device_esp32 | 92a214cb44b312951755d0a1679c460e531465f3 | a9a14d8814f1e9ce2b19c2b77bbfe6abdce23835 | refs/heads/master | 2022-10-28T01:22:02.226437 | 2020-06-18T11:47:08 | 2020-06-18T11:47:08 | 271,061,302 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,535 | h | /* Copyright 2018-2019 Google LLC
*
* This is part of the Google Cloud IoT Device SDK for Embedded C,
* it is licensed under the BSD 3-Clause license; you may not use this file
* except in compliance with the License.
*
* You may obtain a copy of the License at:
* https://opensource.org/licenses/BSD-3-Clause
*... | [
"pradeepmcp@gmail.com"
] | pradeepmcp@gmail.com |
7c56f470e16f0ea3ff377809038ae1a098119d80 | 7988f9d07420d7577df05adfcda47eafef8e39c8 | /hshell/src/hs-ext.h | b08d5f91c5ece18a9bedd6c44f9bc423cc5f671c | [
"BSD-2-Clause-Views",
"BSD-2-Clause",
"LicenseRef-scancode-public-domain"
] | permissive | ekd123/ekode | e4998efc88d90b7e8655b22d4296e5f902ff91bf | e5ea3e8c701f64f42d0e17992fb4ce637b9a5f20 | refs/heads/master | 2021-01-15T15:27:39.790470 | 2018-08-16T10:44:59 | 2018-08-16T10:49:22 | 65,139,699 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,422 | h | /**
* Copyright 2012 Mike Manilone. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions ... | [
"crtmike@hotmail.com"
] | crtmike@hotmail.com |
a501470f6f42967aa90a8092dac8a4515d692ef1 | 0a2e577c4626cc83142b5fb963e4fe064a942a5b | /Save.c | 71540aa3d4de9d703aabb27067004c47aa74095a | [] | no_license | nerahmou/Corewar_VM | 6d255a046ac48f8b352fd5965fde56f4ea5edcd3 | 3b08e61efadf3a8d2f3f7cf19590f14be34a88b1 | refs/heads/master | 2020-04-16T10:19:54.909691 | 2018-12-20T20:21:47 | 2018-12-20T20:21:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,159 | c | //
// Created by Victor Steyaert on 09/12/2018.
//
#include "corewar.h"
int ft_indirect(t_var *data, t_process *proc, int dir_oct, int idx)
{
int i;
unsigned int val;
i = 2;
while (--i >= 0)
val = data->vm[(proc->pc + data->op_size) % MEM_SIZE] << (OCT * i);
if (idx)
val = val % IDX_MOD;
data->t_para... | [
"vsteyaer@student.le-101.fr"
] | vsteyaer@student.le-101.fr |
bd1ddad2c4d26966c8cda7fd34f01582d6d077ee | 0aefb067de413e9081a36f474554d13024c06701 | /ngx_rtmp_bandwidth.h | 0d9d32303854e846c6470667a133392ac71fcfd6 | [
"BSD-2-Clause"
] | permissive | florolf/nginx-rtmp-module | 15c5482c3ac902476150ef02a4189d450d86eceb | e898d7911ac9e1081f7911ea44af9deac9a010ab | refs/heads/master | 2021-01-22T20:26:15.253660 | 2013-12-21T18:07:13 | 2013-12-21T18:07:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 584 | h |
/*
* Copyright (C) Roman Arutyunyan
*/
#ifndef _NGX_RTMP_BANDWIDTH_H_INCLUDED_
#define _NGX_RTMP_BANDWIDTH_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
/* Bandwidth update interval in seconds */
#define NGX_RTMP_BANDWIDTH_INTERVAL 60
typedef struct {
uint64_t bytes;
uint64... | [
"arut@qip.ru"
] | arut@qip.ru |
02a66bb0db8e7a4420a4485b43b89a8b7292c2eb | 29f5edb853940409796c520bc2b4366bd67d3226 | /APUE/thread/relayer/main.c | 2577da74b2e35cdfcb85e595ae347f4558361f7d | [] | no_license | yumm007/C | 420693180c247b1dd080824150a7d3d4047dc1d2 | d0940275f386d9cdcbb0445fdb07083d1af2d64c | refs/heads/master | 2021-01-18T13:41:35.517366 | 2015-06-25T12:50:39 | 2015-06-25T12:50:39 | 1,315,157 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,845 | c | #include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include "relayer.h"
#define TTY1 "/dev/tty9"
#define TTY2 "/dev/tty10"
#define TTY3 "/dev/zero"
#define TTY4 "/dev/zero"
int
main()
{
int job1, job2;
int fd1, fd2;
struct relayer_stat_st statres;
... | [
"yumm007@gmail.com"
] | yumm007@gmail.com |
ef656696ddf035e2ab337eb3690feef222bd45c8 | 2388442b89b9409403b789d3b8c6480a5706ef00 | /refineCOM4.c | b488ff2f4d5cafc817bb6a4d6e0b40f1cd82cdd1 | [] | no_license | Thyldor/Root3FEM | 7f5fff64848ab54090619a8231e1bcd83d4b27dd | f076ad9b274bdf780b931358a33b5aa1b224548e | refs/heads/master | 2021-02-07T13:12:05.210229 | 2020-03-01T13:42:28 | 2020-03-01T13:42:28 | 244,030,107 | 6 | 1 | null | null | null | null | UTF-8 | C | false | false | 26,831 | c | //compile using: mex -R2018a refineCOM4.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "mex.h"
#include "matrix.h"
struct triangle;
struct vertex{
int tag;
double x;
double y;
int isBorder; //0 if it isn't, 1 if it is
};
struct edge{
struct vertex *a;
struct vertex *b;... | [
"61633501+Thyldor@users.noreply.github.com"
] | 61633501+Thyldor@users.noreply.github.com |
67f004a3146c960d5d543d3c7ca037a2a9c35f42 | d2fd8fc1177879997789c349fe56de9118db4c21 | /Pods/Headers/Private/TesseractOCRiOS/TesseractOCR/strokewidth.h | bd4efb1669d7781107c3469c2db44fd3818ec72a | [
"MIT"
] | permissive | jok886/IDCNRecognize | 3569fe4208eb8e238b622360f6c1dc6cdb08a232 | e615700405ca93b6eb7162f93bec139bb2224b10 | refs/heads/master | 2021-05-25T08:23:19.675901 | 2020-04-07T08:47:00 | 2020-04-07T08:47:00 | 253,736,235 | 0 | 0 | MIT | 2020-04-07T08:42:42 | 2020-04-07T08:42:42 | null | UTF-8 | C | false | false | 72 | h | ../../../../TesseractOCRiOS/TesseractOCR/include/tesseract/strokewidth.h | [
"xionghaocoding@163.com"
] | xionghaocoding@163.com |
e4290ac17b2824153cf379919568475513852beb | ef55d0e2d4797533783573377b4ae75d48313928 | /xmlroff/libfo/fo/fo-footnote-body.h | 13a4d1e93fe9176712622a5f09360b4305bf3cf8 | [
"BSD-3-Clause"
] | permissive | xmlroff/xmlroff | fefab307345ddd8ffcb3872c256969e4dd88936a | 0e407a385a5fc63c1faf1f0ac62e4468491543d7 | refs/heads/master | 2021-10-25T17:15:52.256578 | 2019-01-05T22:46:08 | 2019-01-05T22:46:08 | 6,376,377 | 15 | 9 | null | 2021-10-21T20:54:59 | 2012-10-24T19:42:14 | C | UTF-8 | C | false | false | 1,711 | h | /* Fo
* fo-footnote_body.h: 'footnote-body' formatting object
*
* Copyright (C) 2001 Sun Microsystems
* Copyright (C) 2007 Menteith Consulting Ltd
*
* See COPYING for the status of this software.
*/
#ifndef __FO_FOOTNOTE_BODY_H__
#define __FO_FOOTNOTE_BODY_H__
#include <libfo/fo-utils.h>
#include <libfo/fo/fo-... | [
"tkg@8c214379-a42c-0410-92c0-bc03c673cdb0"
] | tkg@8c214379-a42c-0410-92c0-bc03c673cdb0 |
5c56e3659fba9e3b34c11ea605f6f3a9cc3e1bb1 | 3ae6192c16f3d6a5db8d755a0287379d30e9762f | /headers/proc/p32mx110f016b.h | 1278cebf6741569908fe583e3e1352a4e8cc5f06 | [] | no_license | is1200-example-projects/mcb32tools | 4b0fa57db6f516ea8257a4aab0038ef585c0506f | 719c294d6b2a7d7ba0ce2adee6896a6388af31a5 | refs/heads/master | 2022-02-18T01:19:10.335854 | 2018-09-20T13:24:28 | 2018-09-20T13:24:28 | 33,256,762 | 11 | 8 | null | 2022-01-29T16:31:18 | 2015-04-01T15:46:26 | C | UTF-8 | C | false | false | 569,516 | h | /*-------------------------------------------------------------------------
* PIC32MX110F016B processor header
*
* This software is developed by Microchip Technology Inc. and its
* subsidiaries ("Microchip").
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted pr... | [
"isaksson.axel@telia.com"
] | isaksson.axel@telia.com |
087117a4691febad5f1787900c446596181a30dc | 665eac2bfd0d2f1d559f485375f89e8a91632c6e | /VOL_300/363_01/MAIN.C | 893a1f9a3958c828494aec04b776a9f155f01939 | [] | no_license | kubohisa/CUGL | 615c29732e5fc2c6bcb29a4013be3351dc21dda6 | 75fc7cb2f8c5f3869a091b2b5c50c09323bc1c03 | refs/heads/main | 2023-03-15T16:19:49.355867 | 2020-10-02T21:19:00 | 2020-10-02T21:19:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,380 | c | /***********************************************************************
*
* MAIN.C
* Main Module for 68020 Assembler
*
* Function: main()
* Parses the command line, opens the input file and output files, and
* calls processFile() to perform the assembly, then closes all files.
*... | [
"username@Rodney.(none)"
] | username@Rodney.(none) |
c6608e442aae8c01a88a8a64f4f27a7bafe04b5d | 30fff60d24bfdfc70b7494526e8e710d72d04ff6 | /CD/5_while/lex.yy.c | 44299ab91f757be3523127a8b720d7f77d1d1518 | [] | no_license | SanilShah/BTech-Codes | ff447b7798fe0a75a1140288538ba4aeb3df8958 | 131c799dbf6c977737d8276a327b3e73514f26dd | refs/heads/master | 2022-04-24T12:00:57.979031 | 2020-04-29T00:38:39 | 2020-04-29T00:38:39 | 259,630,853 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 38,785 | c | /* A lexical scanner generated by flex */
/* Scanner skeleton version:
* $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $
*/
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#include <stdio.h>
/* cfront 1.2 defines "c_plusplus" in... | [
"noreply@github.com"
] | SanilShah.noreply@github.com |
c7ddca6c38b402cab4038960f8f68eb523989ff4 | f97e072bef87857afb0ee9bf7af0b706914de5f5 | /tests/mpi-counting.c | 498c80d9206925bbcf23d0c49ed4b9dc89dacbf0 | [] | no_license | adk9/ohm | f5aa3efc7df611153d082546c2e94bbaaef6651f | 001c4043ab12ef2364f04b1c07821bc2b9484352 | refs/heads/master | 2021-01-01T04:58:26.383974 | 2016-04-11T20:50:56 | 2016-04-11T20:50:56 | 56,006,700 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 845 | c | #include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "mpi.h"
static int limit = 120; /* default */
int count;
int main(int argc, char* argv[])
{
int init, finalized;
int rank, size;
if (argc > 1) {
limit = (count = atoi(argv[1])) > 0 ? count : limit;
}
... | [
"adkulkar@indiana.edu"
] | adkulkar@indiana.edu |
fdb8e244cf347efedb7de125e38abee804de4d8a | 722fa94daaf3da3a70d3b0b1a0085bfbebe33356 | /kernel/base/include/los_process_pri.h | 425dec9fe896c9245ef9cc47c7c88ac9435f9a71 | [
"BSD-3-Clause"
] | permissive | breakcount/kernel_liteos_a_note | 6e7acbfb0d84553147841eb857068ed1a7f86642 | 497b24715e004df8822863885ab900c34bc1575d | refs/heads/master | 2023-01-06T05:41:51.804774 | 2020-11-04T15:16:32 | 2020-11-04T15:16:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 18,977 | h | /*
* Copyright (c) 2013-2019, Huawei Technologies Co., Ltd. All rights reserved.
* Copyright (c) 2020, Huawei Device Co., Ltd. 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. Redistrib... | [
"kuangyufei@126.com"
] | kuangyufei@126.com |
61c6494102082510b2ac6efcb8b9c6300e7cf076 | 9ec5c73c22685cb7cb4216a7d367f5173083d56a | /spca6350/inc/api/sp5k_dbg_api.h | 88bdeda60b36589bb224fb84d3fdcbb122f6083e | [] | no_license | chadmuska/test | 0f06d622e22eda54a14b8275f287d728cbc53a84 | 68af41f3243feccda6952e85ff75f17a434963eb | refs/heads/master | 2020-03-19T23:19:17.368909 | 2018-06-12T01:53:48 | 2018-06-12T01:53:48 | 137,002,080 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,460 | h | /**************************************************************************
*
* Copyright (c) 2004-2013 by iCatch Technology, Inc.
*
* This software is copyrighted by and is the property of iCatch
* Technology, Inc.. All rights are reserved by iCatch Technology, Inc..
* This software may only be used in ... | [
"paul.chang@jet-opto.com.tw"
] | paul.chang@jet-opto.com.tw |
08af9d4a7ae5dc6a1dc3389ac32d2e3124e986f9 | 4999b88c1efdd9335f36bfca4756373a1c00489a | /c++/flash_boot/boot.c | 19778c741e1488548589faa4a2140f1ae29c76bb | [] | no_license | knudhansen/programming | 90f03dc71e31e71ad4d4985a25b61476b4498a6a | 6e287c948ae1a6e131b49d2e71cc1873ca36bc5d | refs/heads/master | 2021-01-17T10:32:41.399196 | 2020-10-26T13:35:09 | 2021-01-09T09:22:56 | 29,040,632 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,397 | c | #include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
#define SUCCESS 0
#define FAILURE 1
#define NUMBER_OF_CHAR_PER_BYTE 2
#define PRIMARY_PARTITION_TABLE_HEADER_BYTE_OFFSET 0x000
#define BACKUP_PARTITION_TABLE_HEADER_BYTE_OFFSET 0x400
typedef struct nvram_struct {
... | [
"knud.hansen@gmail.com"
] | knud.hansen@gmail.com |
9389090b70891048f0e5a7604a6be37ca8c2cfef | af668c07e6877363d706aa002b48b3c87d4f3d42 | /src/blas/reference/level1/ATL_dzrefnrm2.c | c7bce7a923e177f337d85486cad2d7bd646895f4 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | kevleyski/math-atlas | 20f30d4f039aafc00811a61a1c65087b2b0739e5 | cc36aa7e0362c577739ac507378068882834825e | refs/heads/master | 2020-05-20T09:05:20.638100 | 2019-05-07T23:15:00 | 2019-05-07T23:15:00 | 185,490,601 | 0 | 0 | NOASSERTION | 2019-05-07T23:06:55 | 2019-05-07T23:06:54 | null | UTF-8 | C | false | false | 7,499 | c | /* ---------------------------------------------------------------------
*
* -- Automatically Tuned Linear Algebra Software (ATLAS)
* (C) Copyright 2000 All Rights Reserved
*
* -- ATLAS routine -- Version 3.9.24 -- December 25, 2000
*
* Author : Antoine P. Petitet
* Originally developed at the Univer... | [
"klambert@kevs-encoder.switch.internal"
] | klambert@kevs-encoder.switch.internal |
9ddd1969235695c788669101bb2403a2df6e4af1 | 3ee2792127aede33173736376e63bab1e1cdf921 | /moves2.c | c1594f5491894aee84dc8b757c5e297d7348b1c0 | [] | no_license | Anothereno/fillit | b14b3185fdb9450e965731a94e88941f607b1a64 | ed897b6356fd4e398dc060c3504fc51ed9bd0530 | refs/heads/master | 2020-04-25T11:43:21.771726 | 2019-02-26T17:06:59 | 2019-02-26T17:06:59 | 172,754,352 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,459 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* moves2.c :+: :+: :+: ... | [
"noreply@github.com"
] | Anothereno.noreply@github.com |
647a6d11242c0cf37cdc728ae74cbe219bf1215b | 7b8910c081abef86564f12570bc776d6210ca8aa | /C/sequtils/strings.h | 36b0c8be8ea8594d372da80da690a3d67fcbae6b | [] | no_license | liangdp1984/seqtools | d43eb1979b81eb0d41283fde19802cd921d9d487 | a8ee5e7b50686513ec9b8dd686f909f365392b47 | refs/heads/master | 2022-03-14T02:09:52.466863 | 2014-08-12T20:25:20 | 2014-08-12T20:25:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 264 | h | #ifndef __SEQUTILS_STRINGS_H__
#define __SEQUTILS_STRINGS_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
char* substring(const char* str, size_t begin, size_t len);
#ifdef __cplusplus
}
#endif
#endif
| [
"slianoglou@gmail.com"
] | slianoglou@gmail.com |
f24a05affe7a4624d0dd88fbd2397957ac378f4d | 4ce34ad17cb36592042dd3810d45eeab451820fb | /Parcialblabla/src/utn.c | 4af2173328749d880cf027cecd03180f7ac227a2 | [] | no_license | MaruAguilera/Programacion1 | 36a5c5683971d795948b5cd0fa32489ae27b35a2 | 03806773b536c1d3ef790a6ac0533381cbd0ce2f | refs/heads/master | 2020-07-13T07:34:43.142355 | 2019-12-20T01:16:56 | 2019-12-20T01:16:56 | 205,034,132 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,038 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "utn.h"
int getInt(char mensaje[])
{
int auxiliar;
printf("%s",mensaje);
scanf("%d",&auxiliar);
return auxiliar;
}
int getString(char* msg, char* msgError, int min, int max, int* reintentos, char* resultado)
{
int retorno=-1;
... | [
"mari.ceci.agui@gmail.com"
] | mari.ceci.agui@gmail.com |
4955c382c4b4e09737c99273bb517deebb1d33e2 | 5c255f911786e984286b1f7a4e6091a68419d049 | /code/e4232c22-7e69-484a-ad11-bce8fbef72e3.c | fc5ce3dd86f748f25d35168b99edc489ec24047e | [] | 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 | 229 | 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 = l+j;
k = k-j*i;
printf("vulnerability");
printf("%d%d\n",k,l);
return 0;
}
| [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
56380e3ee529bcd335b67bbcb8ce1278c53df391 | a7781912e1790608817f0688275117fbfc26391c | /Test/regression/C/confirmed_klee/next_after.c | 128c13eece3d3d659aa7662d87570cde5bd7fe44 | [] | no_license | AriadneFP/ariadne | 53cb3b8b4abbe7dfddbb4b7319047e8981cf791b | 775a1e32c7e68832f754fa8b1c757a0bbcf32b87 | refs/heads/master | 2022-06-17T21:31:56.868550 | 2020-05-11T16:48:09 | 2020-05-11T16:48:09 | 263,096,163 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 200 | c | #include <math.h>
#include <float.h>
#include <stdio.h>
int main(void) {
double x = nextafter(-2.2250738585072009e-308, DBL_MAX);
//double x = nextafter(DBL_MAX, 1.0/0.0);
printf ("%e\n", x);
} | [
"simon.gaozheng@gmail.com"
] | simon.gaozheng@gmail.com |
0d4fed1cfacfa105f2893dd3100c7465fe995bba | 94e8344ee420ae4d2eb1643e95973845f341a3d2 | /gcc_4.3.0_mutants/mutant101658_reload1.c | b2da73452aead9ff39334e2f4f36ee78f5749518 | [] | 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 | 285,378 | c | /* Reload pseudo regs into hard regs for insns that require hard regs.
Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
Free Software Foundation, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it and/or m... | [
"agroce@gmail.com"
] | agroce@gmail.com |
f24827f463ac749e47f40537c45737a45d416ed7 | 876b4a4598115a453a39aa5576682988d73d9484 | /kdecho.c | 0906771b0162145b39e69645e7721a338cb50312 | [] | no_license | kavithabk/shell | fcb571afd1969491639d13accd77df5865b71ea8 | e3cfd4e69abc02962668a79f798e3ab35c3931ac | refs/heads/master | 2021-01-01T06:54:18.954320 | 2015-03-13T03:52:09 | 2015-03-13T03:52:09 | 31,886,801 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 217 | c | f_kdecho(int argc, char *argv[])
{
int i = 0;
/*Read all the positional parameters and display it on
the standard output*/
for (i = 1; i < argc; i++) {
printf("%s\t", argv[i]);
}
printf("\n");
return (0);
}
| [
"kavithabk@users.noreply.github.com"
] | kavithabk@users.noreply.github.com |
28eccd3cb524e021ca2fcf5edc57c776e30b8c75 | 63f28129ded95998171d0ca4d5cc4db99bf758b1 | /evp.h | 5c642d99dc468ac281f6d2f7ccc2bc76bded7fbb | [] | no_license | mesoOSU/Voce | ff33220d8869fe486f57d935d2add87ed2dc3222 | 094d63d56bacbef9b19513edb4bce0d915a21fe0 | refs/heads/main | 2023-05-24T04:52:55.637792 | 2021-06-14T17:29:52 | 2021-06-14T17:29:52 | 376,901,769 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,055 | h | #ifndef EVP_H
#define EVP_H
#include <stdlib.h>
#include <mpi.h>
#include <fftw_mpi.h>
#include "evpFlags.h"
#include "V3math.h"
/**********************
types and structures
*********************/
typedef double real;
#define MPI_real MPI_DOUBLE
//typedef float real;
//#define MPI_real MPI_FLOAT
typ... | [
"noreply@github.com"
] | mesoOSU.noreply@github.com |
2813d32ee725c27550abf22b58b8cbc1ac8d6892 | d1902d6f1a438dc96ec22ff7ef726b3ef7716aab | /ios/Pods/Headers/Private/React/React/Views/RCTSegmentedControlManager.h | 35c7b8e1a38522eaf33246e1a6cde5b50470f08a | [] | no_license | ranasadam/RockSportV1 | 4f4e788c2369e9b1a6d5ce7a4947b3e19448209f | 60a4ad4dde0de12f55539b5849130586464c7d94 | refs/heads/master | 2020-03-06T14:47:46.560900 | 2018-03-27T06:31:59 | 2018-03-27T06:31:59 | 126,942,299 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,067 | h | XSym
0061
1b55e764ef089aae2fcd95e79cd8436f
../../../../../React/React/Views/RCTSegmentedControlManager.h
... | [
"saddam.hussain@therightsw.com"
] | saddam.hussain@therightsw.com |
a0e7cbc817fe516c140cf078a80b667e3fc7aab2 | 90d7c26e3f1dc9a16b9091f1e7bb0f8e5e56a9d9 | /src/draw/draw.c | 28bc5b0dd97111137c461eb5b9c4910b6317646d | [
"MIT"
] | permissive | ElnazP/MonoAlg3D_C | c457489e4b8dfad66d7183b2c1a4ac416b5fa10f | 3e81952771e8747f8fb713c31225b50117c61a2d | refs/heads/master | 2022-05-29T16:35:05.745752 | 2020-04-28T20:23:29 | 2020-04-28T20:23:29 | 259,737,833 | 0 | 0 | MIT | 2020-04-28T19:55:48 | 2020-04-28T19:55:47 | null | UTF-8 | C | false | false | 46,267 | c | //
// Created by sachetto on 11/11/17.
//
#include <float.h>
#include <time.h>
#include <limits.h>
#include "draw.h"
#include "color_maps.h"
#include "../single_file_libraries/stb_ds.h"
#include "../raylib/src/raylib.h"
#include "../raylib/src/camera.h"
#include "../raylib/src/raymath.h"
#include "../raylib/src/rlgl.... | [
"rsachetto@gmail.com"
] | rsachetto@gmail.com |
dff9d0724784ff115b650453bddcf4195c235227 | 56f64b3a32e39b2e9c16a6c3da58056edb5672d1 | /src/swtpm/threadpool.c | aad1f4da79bfb4b0e2e01650af1cd18fc15952ab | [
"BSD-3-Clause"
] | permissive | stefanberger/swtpm | a6367b32017f5404b814eca39bf86dc4ebb84ab4 | a96509723fc27841bf76295e5e6b3d9d34052b0a | refs/heads/master | 2023-08-21T13:05:25.837538 | 2023-08-19T13:52:12 | 2023-08-19T15:36:21 | 22,190,497 | 460 | 139 | NOASSERTION | 2023-09-02T02:48:46 | 2014-07-24T01:10:58 | C | UTF-8 | C | false | false | 4,301 | c | /*
* threadpool.c -- threadpool
*
* (c) Copyright IBM Corporation 2015.
*
* Author: Stefan Berger <stefanb@us.ibm.com>
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* Redistri... | [
"stefanb@us.ibm.com"
] | stefanb@us.ibm.com |
70f3ed13433c9b64e918a9b3948f842ad7598941 | 6ef4d5b27e9b51fc8613096c4d611b049c18ef4c | /ptxed/src/ptxed.c | 6800ceecade682284c116994d33f06ba55e636ad | [
"BSD-3-Clause"
] | permissive | wuyadie/libipt | fc2f4104ca9699a9111e582c04c019f6828a0588 | e53b2dfa8b26cccd051a8f1ccc70fff847adc551 | refs/heads/master | 2023-05-01T11:44:21.094234 | 2021-05-18T06:13:37 | 2021-05-20T15:13:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 67,285 | c | /*
* Copyright (c) 2013-2021, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the f... | [
"markus.t.metzger@intel.com"
] | markus.t.metzger@intel.com |
0814606dba69ba6023540f4059f02cb1b6fc551f | 87ed072cd0ee802a824dd58ccf71652c60b83a32 | /SEMAPHORE/SHARED LINKED LIST/userprog.c | 2533107b779fd4f0b685db1b17f3bf2b42b05430 | [] | no_license | ambideXtrous9/OS | 1ae0f9dec4cb1de47b040ea6748b6aa25c8f4ade | 786606cfbcd8968e232a3fb74e94c905c6fc55be | refs/heads/master | 2022-02-11T18:22:59.050518 | 2019-08-20T12:42:03 | 2019-08-20T12:42:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,680 | c | /*Using this execute.c program we will call the functions which are to be used to operate on
linkedlists.Here the header sharedll.h contains the definition of those functions
*/
#include"sharedll.h" //header file that contains all the functions for linkedlist
#define NO_SEM 1
int main()
{
char yn;
printf("DO YOU W... | [
"sushovansaha95@gmail.com"
] | sushovansaha95@gmail.com |
4ecbd6b73516dc21ade6160990d07ca6291ab7c1 | 3f3811b21bf5a2d0c8d529cbd204d28ed086acb1 | /STM32F103C8T6_ARM Cortex M3/SysTick/STK_private.h | 913ca5824fcde624070a5eefea865c4792d55f9f | [] | no_license | abdelrahman179/STM32_ARM-ATMega32_AVR_DRIVERS_MCAL | ec6d140eadef9c9a76ecb87eec9719a145b082a6 | 671bfb554eaa2606689deaec5f9c03d649880785 | refs/heads/master | 2023-01-19T16:45:31.143536 | 2020-12-01T17:08:16 | 2020-12-01T17:08:16 | 286,865,736 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,005 | h | /**********************************************************************************/
/* Author : AbdElrahman I.Zaki */
/* Date : 26 August 2020 */
/* Version: V01 ... | [
"noreply@github.com"
] | abdelrahman179.noreply@github.com |
8da45f07a86676ac85f3194a54548a8aa66539bf | b33d4fc4d4ca43fb65191be8d13feb98c8163596 | /HW09/shuffle.c | b4e3e66dec7bd29d7602a76591d89d14c1ac93ec | [] | no_license | astpierre/ECE264 | 71950b8690fd0407a10aefa5c3de7e0b78df4c07 | 341491a79e68d34c3d46af7203ff2748dc53de0f | refs/heads/master | 2020-03-18T20:00:21.761612 | 2018-12-10T12:00:31 | 2018-12-10T12:00:31 | 135,190,582 | 1 | 8 | null | null | null | null | UTF-8 | C | false | false | 5,924 | c | #include "shuffle.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
// Helper functions
//static void _error_clean()
//{ exit(EXIT_FAILURE); }
#ifdef TEST_DIV
void divide(CardDeck orig_deck, CardDeck * upper_deck, CardDeck * lower_deck)
{
// Dividing the decks into lower and upper decks
for(int i=0; i... | [
"astpier@purdue.edu"
] | astpier@purdue.edu |
f4f050046960208d27eeb9d7f83937cac432428b | 3ee04c7668dddcd25357dd03bb116d4c1e6a1f2a | /src/rtsp/rtputils.c | 3c0455a49642c9866da3871dfc6a056031fdb1a5 | [] | no_license | freechw/hackboyun | 3395206ec974055991d1829728b20818f5c113f6 | 6873a0190b0219b7cf89e37136772d8f09471acd | refs/heads/develop | 2023-03-21T01:52:38.647354 | 2021-03-22T05:54:05 | 2021-03-22T05:54:05 | 283,468,423 | 0 | 0 | null | 2021-03-22T05:54:06 | 2020-07-29T10:26:42 | null | UTF-8 | C | false | false | 18,873 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <netdb.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <net/if.h>
#include <netinet/in.h>
#include <pthread.h>
#include <net/if.h>
#... | [
"mr.right.0005@gmail.com"
] | mr.right.0005@gmail.com |
e006310a1d09285da10615591cb486ff6d3bcf1f | 144204c519069fe75ecf084a5aefefea142542b7 | /3rd-party/gpsd-2.92/bsd-base64.c | 27f3909eea51fe264b9e5e0a4efa9d7f5b2960d4 | [
"LicenseRef-scancode-ibm-dhcp",
"ISC",
"BSD-3-Clause"
] | permissive | bopopescu/UnitedSafety | fcb6baf9b3382cc1b45c58079da1dcc33b95d434 | baea1b16c2fd44e224fb9120d026da2535123bd7 | refs/heads/master | 2022-10-10T04:04:58.528055 | 2020-06-11T18:29:19 | 2020-06-11T18:29:19 | 282,259,268 | 1 | 0 | null | 2020-07-24T15:48:24 | 2020-07-24T15:48:24 | null | UTF-8 | C | false | false | 10,598 | c | /* $Id: bsd-base64.c 6908 2010-01-02 22:29:16Z esr $ */
/* $OpenBSD: base64.c,v 1.3 1997/11/08 20:46:55 deraadt Exp $ */
/*
* Copyright (c) 1996 by Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that ... | [
"david.huff@khakira.com"
] | david.huff@khakira.com |
9cba2764d2b2260e19c6b3cced1b5781d6dc8123 | 47e99f5d5dd194e505806173ffd290575a85b95d | /02_Code/01_Sprint1/User/Src_User/Debug/VFB_Debug.h | a14c9fdb818d14a129bd5850afb3ea715a9ed6f1 | [] | no_license | xiangxud/V1_Platform | 3442662597c1584a25149647a5f2235449078696 | e6497035fcbfa470c9e235fa04d80daacc81a256 | refs/heads/master | 2020-07-22T04:25:02.828021 | 2018-11-18T13:42:30 | 2018-11-18T13:42:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 782 | h | /****************************************************************************
* File Name : VFB_Debug.h
*
* Modules :
*
* Summary :
*
* Reference Documents :
*
/****************************************************************************
* Author : Mingfen XIAO
* Version : V0.1
* Date : 2018-11-04
* Descri... | [
"mingfen.xiao@qq.com"
] | mingfen.xiao@qq.com |
c2c8873a7b844357fd05c228446522999595de18 | 317f2542cd92aa527c2e17af5ef609887a298766 | /tools/target_10_2_0_1155/qnx6/usr/include/arm/fault.h | 62a76dbe4c771cfe3b2806eeb02a1a0f2537e850 | [] | no_license | sborpo/bb10qnx | ec77f2a96546631dc38b8cc4680c78a1ee09b2a8 | 33a4b75a3f56806f804c7462d5803b8ab11080f4 | refs/heads/master | 2020-07-05T06:53:13.352611 | 2014-12-12T07:39:35 | 2014-12-12T07:39:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,181 | h | /*
* $QNXLicenseC:
* Copyright 2007, QNX Software Systems.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You
* may not reproduce, modify or distribute this software except in
* compliance with the License. You may obtain a copy of the License
* at: http://www.apache.org/licenses/... | [
"dev@dclark.us"
] | dev@dclark.us |
103188c20a34ed6392d4d8a9989394ad5500a885 | da98ba144462d6852f8a9bbd4eb29a1c6248d53a | /src/mx_count_substr.c | bd24b9091a21f7ad9e28e77633fc2bbf3d9fe1a1 | [] | no_license | attapack/libmx | 7007a52dd8608cc75ade3809d1c7e39dffde6026 | 1644c84c30ae49a37be244289bfce027e0a50226 | refs/heads/main | 2023-09-05T01:05:37.229904 | 2021-10-30T15:15:15 | 2021-10-30T15:15:15 | 421,038,938 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 400 | c | #include "../inc/libmx.h"
int mx_count_substr(const char *str, const char *sub) {
int count = 0;
if (str == NULL || sub == NULL) {
return -1;
}
if (mx_strlen(str) >= mx_strlen(sub)) {
while (*str) {
if (!mx_strncmp((char *)str, (char *)sub, mx_strlen(sub))) {
... | [
"noreply@github.com"
] | attapack.noreply@github.com |
4d806e7500e45a67e5417a3cc8eca8c0b157a6e3 | 90f792daa4417df49dda0859658dd7a9afb0aa9f | /print.c | 15cdf03c1129205c9a4775a1f6de14237c32aa84 | [] | no_license | pnusystemprog/osp-kor-hw6-Eom-JungBin | 9d07dc424159891266c2eac18d9ce0f3955e78e9 | 3afccefbda9f6a2fda330055f30b180b40f022f5 | refs/heads/master | 2020-05-22T12:40:44.950731 | 2019-05-17T11:17:13 | 2019-05-17T11:17:13 | 186,346,122 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 237 | c | #include <stdio.h>
#include "phone.h"
extern int pb_num;
void printAll()
{
int i;
printf("<< Display all contacts in the PhoneBook >>\n");
for(i=0; i<pb_num; ++i)
printf("%s %s\n", PhoneBook[i].Name, PhoneBook[i].PhoneNumber);
}
| [
"ejb0329@gmail.com"
] | ejb0329@gmail.com |
eefe47777d934e2d7c94892e49319c3db582de85 | aa3c6c88968a2c3352e62e1802294b12455a1dc8 | /sesion4/Inc/main.h | b9efb9ecf3470d9ae375ef953cddb2f378d1917b | [] | no_license | jcontrerasf/ELO312 | 0ad558ea78128110431de83a761b0475789c0459 | a872d65453f3518a9960b467b6de30d1f7333b33 | refs/heads/master | 2021-02-18T22:27:00.223479 | 2020-03-30T19:33:31 | 2020-03-30T19:33:31 | 245,244,593 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,086 | h | /* USER CODE BEGIN Header */
/**
******************************************************************************
* @file : main.h
* @brief : Header for main.c file.
* This file contains the common defines of the application.
*************************************************... | [
"50180934+jcontrerasf@users.noreply.github.com"
] | 50180934+jcontrerasf@users.noreply.github.com |
9aaf6617265ed005200e652cc8d2df3118dab38e | 1adee3e6fcb94e9d3bf448565909cc099ed2ef14 | /emBODY/eBcode/arch-arm/board/mc4plus/appl/v1.old/src/eoappservices/EOappEncodersReader.c | e201317485b91c606c696ba40ed1f0eaffe9d395 | [] | no_license | uincore/icub-firmware | 34b98820b16e1aa3f99592d5c7227e49d93b32cd | 7b2c869a96e97318b48d94f2962f3ed1ec6d9a12 | refs/heads/master | 2020-12-14T09:50:34.466689 | 2016-08-19T14:00:54 | 2016-08-19T14:00:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 29,221 | c | /*
* Copyright (C) 2011 Department of Robotics Brain and Cognitive Sciences - Istituto Italiano di Tecnologia
* Author: Valentina Gaggero
* email: valentina.gaggero@iit.it
* website: www.robotcub.org
* Permission is granted to copy, distribute, and/or modify this program
* under the terms of the GNU General Pu... | [
"davege89@users.sourceforge.net"
] | davege89@users.sourceforge.net |
7864883a63f8bc0f66cb790fa788ebf0e981ecd1 | faa9528004b621108ffbc8c352f1a24205a91fc0 | /SRC_GOLDW/libs/cpu_parse/UTF/utfCompress.c | 169c63fdcd38a66927ca318746c05c35eb6e97c8 | [] | no_license | Zzch25/EarlyGPUTokenizer | 1e9456266a6ad6f9b6f9e1af49304aa770935fb7 | 30ffd5bc1ac809cf10dd5ef7c721a353b8a69ef3 | refs/heads/master | 2020-06-10T06:51:26.085536 | 2016-12-09T03:30:52 | 2016-12-09T03:30:52 | 75,989,857 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,629 | c | /*
*This puppy is gonna go up on github since I'll be using
*it in my next project so before I forget...
*
*(c) Zachary Job
*Sharing is caring, use requires that I am contacted and
*give permission. OR the code can be displayed without
*modification including original comments for educational
*purposes!... | [
"noreply@github.com"
] | Zzch25.noreply@github.com |
e48f6339165afcb19070c2517f74857c86ea2c05 | 1045f2d97baf22b0736b126c7793d2515da9ff4e | /libft/ft_isprint.c | 38ad9b12a1280da550968be7ddbe8bda6d9913ab | [] | no_license | finet-f/gnl | 04b53c8239fe42a73f1e2a34eb87c6c891fc8c23 | f3ce71204186d53ff6325d25e908a9f9511fb972 | refs/heads/master | 2020-03-31T22:13:34.812481 | 2018-10-24T12:08:34 | 2018-10-24T12:08:34 | 152,610,719 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,072 | c | /* ************************************************************************** */
/* LE - / */
/* / */
/* ft_isprint.c .:: .:/ . .:: ... | [
"flfinet@z4r3p3.le-101.fr"
] | flfinet@z4r3p3.le-101.fr |
725441c6a8e0f05c6b2cf01bbada95dcae7b3846 | 70c4584596d09ab3e692c351227f5d9e8351d1f9 | /src/bitutils.c | 75a420e091ca891cbf46cf571571a1002d96949b | [] | no_license | darksmo/chess-smoengine | c7aa93d2300dd9ca42dda96f9d2e69b7b50a67f7 | beeb1ad4763300397167e4682ae40bef7fcdde96 | refs/heads/master | 2020-05-17T09:09:40.757092 | 2014-04-06T07:40:35 | 2014-04-06T07:40:35 | 5,308,424 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,904 | c | #include "bitutils.h"
const U64 k1 = (0x5555555555555555); /* -1/3 */
const U64 k2 = (0x3333333333333333); /* -1/5 */
const U64 k4 = (0x0f0f0f0f0f0f0f0f); /* -1/17 */
const U64 kf = (0x0101010101010101); /* -1/255 */
U64 _antidiag_masks[] = {
/* 0 */ 0x102040810204080ULL,
/* 1 */ 0x1020408102040ULL,
/... | [
"darksmo@gmail.com"
] | darksmo@gmail.com |
84cb84de0fd5c894e479b4affc706bb86835f308 | dce224e7f793bb38ade8e589cb63a9574589b503 | /AR_interactive3Dmodel/mPCA.c | dd367d3c489be0b17e4dac23680d8a9da19bea28 | [] | no_license | leimpengpeng/Augmented-Reality | 2007debc5f851656126594e3176835c3adc92b3b | 5efe9b3cf30c745013e937daefa338351aec1844 | refs/heads/master | 2021-05-17T12:13:21.094596 | 2020-03-28T10:54:09 | 2020-03-28T10:54:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,164 | c | #include <stdio.h>
#include <math.h>
#include "matrix.h"
#define VZERO 1e-16
#define EPS 1e-6
#define MAX_ITER 100
#define xmalloc(V,T,S) { if( ((V) = (T *)malloc( sizeof(T) * (S) ))\
== NULL ) {printf("malloc error\n"); exit(1);} }
static i... | [
"pengpeng_leim89@hotmail.com"
] | pengpeng_leim89@hotmail.com |
7b92cf1d273247dafdce0946436e8161d1852778 | b1d500a451cd9852089bf3d97e829df069daa9c8 | /Images/MC/ToyRadialFieldScan/Config_3/Br_50.C | 8e09d19e997d4319a1031535f1982a308097ef24 | [] | no_license | sam-grant/EDM | 486ea029bf766c968a3c7b41198ffcf9bc3c9b8a | 525e41de5f675c39014488c79144f47562910736 | refs/heads/master | 2022-10-30T22:35:42.979799 | 2022-10-19T18:44:54 | 2022-10-19T18:44:54 | 296,421,806 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 9,925 | c | void Br_50()
{
//=========Macro generated from canvas: c/c
//========= (Fri Oct 16 07:50:07 2020) by ROOT version 6.22/02
TCanvas *c = new TCanvas("c", "c",0,0,800,600);
c->SetHighLightColor(2);
c->Range(0,0,1,1);
c->SetFillColor(0);
c->SetBorderMode(0);
c->SetBorderSize(2);
c->SetFrameBorderMode(... | [
"samuelgrant@x.local"
] | samuelgrant@x.local |
0c32d005041b28203cb97abd856e1bfb54746d72 | d233dd680a598b75c8e7d8f91b761b447fba26d5 | /kfxmpp/kfxmpp/message.c | 2cd7ce4cdf33a521537ce09a94bcbeb1845b8b81 | [] | no_license | elpescado/kfxmpp | 8bcfd120e34d237c2cb25b81ea908558abd7b3b7 | a7da8f164e884e13e3d484992d2573e11da83d17 | refs/heads/master | 2016-09-06T06:27:34.227861 | 2008-03-21T14:58:27 | 2008-03-21T14:58:27 | 33,263,044 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,341 | c | /*
* kfxmpp
* ------
*
* Copyright (C) 2003-2004 Przemysław Sitek <psitek@rams.pl>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at yo... | [
"przemyslaw.sitek@adfc4fda-f248-0410-ab55-cb5ea932f9a3"
] | przemyslaw.sitek@adfc4fda-f248-0410-ab55-cb5ea932f9a3 |
a312d78323ed2d1d184c28f3da6efb2e2a2be93f | 27f94c6b91fec84a43feb36208303044d63f1c67 | /stroki-char/9.1.4.c | b2b4a68b2d86cedf03aceb49854cdee74344bcfa | [] | no_license | U2625/Training-C | bc9983a6b3b9527582aababfaa76493ec8d12f55 | 5e32ec38c69a317f7023a79c8ccaba4d455a653c | refs/heads/master | 2020-05-09T10:27:55.373894 | 2019-06-14T15:12:22 | 2019-06-14T15:12:22 | 181,043,268 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 216 | c | #include <stdio.h>
int main()
{
char c;
scanf("%c", &c);
if (c>='0' && c<='9') printf("digit\n");
else if ((c>='A' && c<='Z') || (c>='a' && c<='z')) printf("en\n");
else printf("error\n");
return 0;
}
| [
"nastassii@gmail.com"
] | nastassii@gmail.com |
0b71a8d2ea543c8a5a1b32b27fa26a121c767f9f | a538954154050c8cea35ec6ddfec18e8836df4b8 | /board_dev/dev_key.h | f1e37321dbe56f8d5b19c20c32ba034a5ad0aab0 | [] | no_license | junwanghust/stm32f407 | eb36cc610d8af94219c6d3d02cb2063cafb7a379 | 00a448083ae32dc2088e8700ae4706507b35be0a | refs/heads/master | 2020-03-18T08:08:29.912472 | 2018-07-10T02:46:42 | 2018-07-10T02:46:42 | 134,492,661 | 1 | 0 | null | 2018-05-23T00:55:34 | 2018-05-23T00:55:34 | null | GB18030 | C | false | false | 419 | h | #ifndef __DEV_KEY_H__
#define __DEV_KEY_H__
extern s32 dev_key_init(void);
extern s32 dev_key_scan(void);
extern s32 dev_key_read(u8 *key, u8 len);
extern s32 dev_key_open(void);
extern s32 dev_key_close(void);
#define DEV_KEY_PR_MASK (0X80)/*按键按下松开标志*/
#define DEV_KEY_PRESS (0X01)/*键值,只有一个键,直接定义*/
#defi... | [
"github@wujique.com"
] | github@wujique.com |
a92358cb558001f0302b932d62e299b65798bfee | 21aca6c8744cda06e1f30918bc236571c53ec7ea | /plasma.h | 12125839722a0b8acacb09365d2cd1403edc40de | [] | no_license | samizzo/syntax16 | 411d4e5b3baf4916307a12030d5bd0d5704962b3 | d25644b632df6f0f73d44a66a79a26e2b1a00b54 | refs/heads/master | 2020-12-24T07:53:34.618651 | 2020-01-19T01:21:05 | 2020-01-19T01:21:05 | 73,358,484 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 102 | h | #ifndef _plasma_h
#define _plasma_h
#include "effect.h"
EffectDesc* plasma_getEffectDesc();
#endif
| [
"sam@horsedrawngames.com"
] | sam@horsedrawngames.com |
1c7e39783f78703162180e340567f9bfead126d0 | 97120fdddc3d30e54f67e7c402975c97fa39620c | /Placa3/Src/main.c | e74898df29bfafb0a0a951dc93f772aff4446dbb | [] | no_license | andreszpt/aed-project | 8eab43b885fd67dab163083fe22fe32379f1bff3 | a9fd1a4c4caa39fa7011acfb32cee55532c680e6 | refs/heads/master | 2023-02-09T15:35:59.747263 | 2021-01-06T19:02:47 | 2021-01-06T19:02:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,372 | c |
#include <stdio.h>
#include <stdint.h>
#include "stm32f4xx_hal.h"
#include "main.h"
#define MY_ADDR 0x1
#define MASTER_ADDR 0x0
void SystemClock_Config(void);
void GPIO_Init();
void I2C1_Init();
void HAL_I2C_SlaveRxCpltCallback(I2C_HandleTypeDef *hi2c);
void TIMER6_Init(void);
void TIMER7_Init(void);
void HAL_TIM_P... | [
"noreply@github.com"
] | andreszpt.noreply@github.com |
7630ddb4163a3f1ff5026132b25de83de600440e | dd4a86cf7e82bf19816309ae9a88fc133b91c775 | /server/aesdsocket.c | 6a0d1b2146334e11962dcd696e8b82daea93d5fb | [
"MIT"
] | permissive | cu-ecen-aeld/assignments-3-and-later-cchoi22915 | 814d0b6d9e40c29ff26912a554bef6b4089dffbc | 6660630d7d129b4072d9fa4e7a8722902a4eb019 | refs/heads/master | 2023-08-25T17:45:16.976131 | 2021-10-27T23:30:07 | 2021-10-27T23:30:07 | 405,786,096 | 0 | 0 | MIT | 2021-10-30T13:40:49 | 2021-09-13T00:34:38 | C | UTF-8 | C | false | false | 15,048 | c | /*
* file: aesdsocket.c
*
* purpose: opens a socket @ port 9000, logs message to syslog upon connection, receives data over connection to file, * returns full content of file to client
* logs closed connection
* restarts accepting connection until SIGINT or SIGTERM and gracefully exits
* deletes the temp file
*
* auth... | [
"chch4948@colorado.edu"
] | chch4948@colorado.edu |
5eb79d99fb94b481509a3d9a30c0d799cd790f5b | dc2385d0e3f06f762fd949e3f8bb4821d8ce9480 | /Tools/TimeStampCollector/GetEncoderTimeStamps/M4 SPI/headers/SWDelay.h | 2840e138d70cf3afd90f9c0aa6abf5d03495fbfd | [] | no_license | yisea123/PanTilt | 8a3f0b4927fcc04649ee265a3d9e4c4f2bc70e16 | 5e89df3ba610817715c8cfcd9ad8937e14b9af82 | refs/heads/master | 2020-12-04T18:41:12.851921 | 2015-05-21T15:56:47 | 2015-05-21T15:56:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,400 | h | /*****************************************************************************
* University of Southern Denmark
* Embedded Programming (EMP)
*
* Author.....: Martin Steenberg, Niels Hvid, Rasmus Stagsted & Stefan Van Overeem
*
* MODULENAME.: SWDelay.h
*
* PROJECT....: Assingment 3
*
* DESCRIPTION: A set of de... | [
"stefan@stefanrvo.dk"
] | stefan@stefanrvo.dk |
dfa9025d9f12f95d9d3f85df86ec842cae13dd0e | 450dbfa81aca2d87e10ec3513065ae526f6f12a0 | /C/data/常用算法程序集_C_CPP_by_徐士良/ch8/8spl20.c | 7880e0dd07a8ec7ab5825b818a5eea3c4999276c | [] | no_license | shihyu/C_and_CPP | cd6eac18e724409d9dff0d4601db525d830e179e | d69e3089a9b6ee191548a492612b54bb037e7df2 | refs/heads/master | 2020-12-15T22:29:42.675236 | 2016-09-25T07:01:08 | 2016-09-25T07:01:08 | 14,917,164 | 1 | 8 | null | null | null | null | UTF-8 | C | false | false | 1,125 | c |
#include "8spl2.c"
#include "stdio.h"
main()
{
int n, m, i;
double s;
double dy[12], ddy[12], z[8], dz[8], ddz[8];
double x[12] = {0.52, 8.0, 17.95, 28.65, 50.65, 104.6,
156.6, 260.7, 364.4, 468.0, 507.0, 520.0
};
double y[12] = {5.28794, 13.84, 20.2, 24.9, 31... | [
"gigi"
] | gigi |
95073584df252c3105bd97a017674207c3a55214 | dbba2f54d69f3ee4b555b68755e3656c8c5eee2c | /src/signal/sigprocmask.c | 35a80255327b6797a822ba43b390dd949b08635f | [] | no_license | chengym/apue_dev | 842bb13946b7cf8250c451dc690a3d154810d32f | 65b2fc47dbdcd7d90480984da76e519ebc6c7490 | refs/heads/master | 2021-01-10T20:59:37.215887 | 2015-04-01T05:11:28 | 2015-04-01T05:11:28 | 20,642,291 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 868 | c | #include <stdio.h>
#include <signal.h>
void checkset();
void main()
{
sigset_t blockset;
sigemptyset(&blockset);
sigaddset(&blockset,SIGINT);
sigaddset(&blockset,SIGTSTP);
checkset();
sigprocmask(SIG_SETMASK,&blockset,NULL);
checkset();
sigaddset(&blockset,SIGTERM);
sigprocmask(... | [
"yomin.cheng@gmail.com"
] | yomin.cheng@gmail.com |
697bf6d7f7fa55089c6c27057c81e53c771aa0b2 | 56e1e9852566e7b37025581600d2eaaf0b9f8e47 | /problems/runoff.c | 9780b723a47ff7f6f40147e30545b78cb435ab96 | [] | no_license | DariaSkorobogatova/Harvard_CS50 | ffad14f1467e68bf7c6f6210cd241390954c0541 | e81dbe0e442243d67a76feb5faad89e1d157d05c | refs/heads/main | 2023-08-10T22:23:28.449311 | 2021-10-01T11:13:34 | 2021-10-01T11:13:34 | 379,699,752 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,796 | c | #include <cs50.h>
#include <stdio.h>
#include <string.h>
// Max voters and candidates
#define MAX_VOTERS 100
#define MAX_CANDIDATES 9
// preferences[i][j] is jth preference for voter i
int preferences[MAX_VOTERS][MAX_CANDIDATES];
// Candidates have name, vote count, eliminated status
typedef struct
{
string nam... | [
"daria.a.skorobogatova@gmail.com"
] | daria.a.skorobogatova@gmail.com |
499adc06400a215314c145fba250a583903c20fa | 46ed5c75b4cf622b5e38033e382691700658a653 | /sourceCodeWeek1/1. Rectangle/draw1.c | 707af7e04676ccd42019a7bf073f236ef1e22a7c | [] | no_license | vohl/cs354-graphics | a2d79aec82b79432d319838b8b47940fac14f331 | 57ea5e832f16e3427284ea3f8bef8a0d0cfb95dd | refs/heads/master | 2020-05-21T00:16:51.796465 | 2014-10-16T01:38:37 | 2014-10-16T01:38:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,129 | c | /* ======================================================================
* draw.c - Draw a filled polygon.
* ======================================================================
*/
#ifdef __APPLE__ // include Mac OS X verions of headers
# include <OpenGL/OpenGL.h>
# include <GLUT/glut.h>
#else // non-Mac OS X... | [
"vohl@Andrews-MacBook-Pro.local"
] | vohl@Andrews-MacBook-Pro.local |
b088c56756dd55e4907c6a000c5448a867a5612f | 36f1906e05e2adf7956d43bfce7ee782391b5b46 | /story 3 and story 4/OS_SCHEDULAR1/OS_SCHEDULAR1/INCLUDE/magic_num.h | 470695297ed50d4125e44dbd1246457a4051574c | [] | no_license | MahmoudAbdelgleel/Bootcamp | 159a652f7201f79243c8c47db3a846c7bae7acde | 9e0b5b4d25fca03e2a90fdfb0b0f53cf96648f07 | refs/heads/master | 2020-04-23T10:39:39.844600 | 2019-03-14T14:45:46 | 2019-03-14T14:45:46 | 171,111,060 | 0 | 0 | null | 2019-02-17T17:18:56 | 2019-02-17T10:54:20 | C | UTF-8 | C | false | false | 425 | h | /*
* magic_num.h
*
* Created: 2/19/2019 4:42:09 PM
* Author: AVE-LAP-063
*/
#ifndef MAGIC_NUM_H_
#define MAGIC_NUM_H_
#define Negative_One -1
#define HIGH 1
#define LOW 0
#define OUTPUT 1
#define INPUT 1
#define ZERO 0
#define ONE 1
#define TWO 2
#define THREE 3
#define FOUR 4
#define FIVE 5
#define SIX 6
#... | [
"Mahmoud.AbdElgleel@avelabs.com"
] | Mahmoud.AbdElgleel@avelabs.com |
208ff577963078868887f29f2d703bbdf3d029e4 | 5792b184e71a9de7779e0bd21b6833f8ddfdb4b5 | /sysvr3/301/usr/src/lib/nsl/__sigset_def.c | bdb47fd0fcd848b1a106622ffb5a766c6de5aa16 | [] | no_license | ryanwoodsmall/oldsysv | 1637a3e62bb1b9426a224e832f44a46f1e1a31d4 | e68293af91e2dc39f5f29c20d7e429f9e0cabc75 | refs/heads/master | 2020-03-30T06:06:30.495611 | 2018-09-29T09:04:59 | 2018-09-29T09:04:59 | 150,839,670 | 7 | 0 | null | null | null | null | UTF-8 | C | false | false | 304 | c | /* Copyright (c) 1984 AT&T */
/* All Rights Reserved */
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
/* The copyright notice above does not evidence any */
/* actual or intended publication of such source code. */
#ident "@(#)libnsl:nsl/__sigset_def.c 1.2"
void (*__sigset)() = 0;
| [
"rwoodsmall@gmail.com"
] | rwoodsmall@gmail.com |
0eabf8e78796875815b12efc7497b9c621952816 | 305d30b4475d02a7c2cf7d4a52d857f5988e885d | /libft/ft_putendl_fd.c | 590737d7f6ffbd96377cf6e54b34169c7484ac88 | [] | no_license | Vulkan13/42 | 9f25ab6ebc3d201b96f76c8994aa6ebd025d199b | 15fb6f2b779644fd84c0fc16e786c2b9897403c9 | refs/heads/master | 2020-05-04T14:25:24.143874 | 2015-03-31T09:30:57 | 2015-03-31T09:30:57 | 26,271,319 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,007 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl_fd.c :+: :+: :+: ... | [
"qcocusse@e2r11p1.42.fr"
] | qcocusse@e2r11p1.42.fr |
a935c5de3dd0889eeee5e8f54d95bedb93cf5afb | 0c5d3b088080577388f5766431487534f93a2c40 | /Github-Projects-Origin/linux-master/net/rds/loop.c.bak.c | 029671306bacecd30e7f3b698e92355ceb9e7b4a | [] | no_license | zhiyuanjia/WoBench | 878255ce45e76ef57f88743c7f43acdfa59e93e7 | 6b337780cbd598de98fc0eabd19efaf1a01b6012 | refs/heads/master | 2021-09-23T03:12:08.091319 | 2018-06-14T10:17:59 | 2018-06-14T10:17:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,013 | c | #include <assert.h>
#include <string.h>
#define INCLUDEMAIN
/*
* Copyright (c) 2006 Oracle. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the fil... | [
"wangcong15@mails.tsinghua.edu.cn"
] | wangcong15@mails.tsinghua.edu.cn |
5dcad89358fe4e0513a64274c0534ea239af7b81 | e65a4dbfbfb0e54e59787ba7741efee12f7687f3 | /editors/uemacs/files/patch-src_unix.c | b595477251ed080c1f758b20b1fa91a2907c7f49 | [
"BSD-2-Clause"
] | permissive | freebsd/freebsd-ports | 86f2e89d43913412c4f6b2be3e255bc0945eac12 | 605a2983f245ac63f5420e023e7dce56898ad801 | refs/heads/main | 2023-08-30T21:46:28.720924 | 2023-08-30T19:33:44 | 2023-08-30T19:33:44 | 1,803,961 | 916 | 918 | NOASSERTION | 2023-09-08T04:06:26 | 2011-05-26T11:15:35 | null | UTF-8 | C | false | false | 698 | c | --- src/unix.c.orig Sat Nov 13 14:57:12 1999
+++ src/unix.c Sat Nov 13 15:04:45 1999
@@ -816,9 +816,19 @@
exit(1);
}
- /* Get size from termcap */
- term.t_nrow = tgetnum("li") - 1;
- term.t_ncol = tgetnum("co");
+ /*
+ * If LINES and/or COLUMNS are set in the environment then use those
+ * values, otherwise g... | [
"steve@FreeBSD.org"
] | steve@FreeBSD.org |
c7847878f1d1832f60c98826545c160bc7768699 | df026896f9579c0c9cb899e2312151605ce0809a | /ptit_excercise/c/kiemtrasolocphat.c | 36ad6a98351c749b0dbc5830d1b2dd15920fc09c | [] | no_license | tannghe07/c-programming-examples | 02f8d8ba48f31d4169fd91afdfa89b287e0d4fc7 | 8c114b42fd3c429a01f6eb8582d11361eccfb2fb | refs/heads/master | 2021-07-11T13:12:56.653716 | 2020-09-29T16:09:34 | 2020-09-29T16:09:34 | 201,755,738 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 272 | c | #include<stdio.h>
#include<stdbool.h>
int kt(int n){
int a;
while(n){
a=n%10;
if(a!=0&&a!=6&&a!=8){
return false;
break;
}
else return true;
n/=10;
}
}
int main(){
int a, b, c;
scanf("%d", &a);
if(kt(a)) printf("1");
else printf("0");
return 0;
}
| [
"tannghe07@gmail.com"
] | tannghe07@gmail.com |
88b75b9edf999a0c62261445d12ff0a511fe7d4e | b7669b631943c56562d826f0ebdd0d3dcfa83d77 | /tut05/camera.h | 922cd7343028edf6675b7b198c98dc687c880910 | [] | no_license | thumsl/OpenGLCourse | 044d5702500b0f0854c481cd41d15f9f54e105a6 | 47c7cb89cc1660779d7f12a7a96a592c625b1531 | refs/heads/master | 2022-10-13T12:31:20.140831 | 2016-08-29T07:59:46 | 2016-08-29T07:59:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 201 | h | #ifndef CAMERA_H
#define CAMERA_H
#include "linmath.h"
typedef struct camera {
vec3 eye;
vec3 up;
vec3 center;
} camera;
camera* camera_create(vec3 eye, vec3 up, vec3 center);
#endif // CAMERA_H | [
"luancthums@gmail.com"
] | luancthums@gmail.com |
e491b2d1609b98455a6e5858eb77dd408a21ebb5 | 9b0685a0d50d41488ae07e3bb107ecacc3d515a7 | /Pods/Headers/Private/ADAL/ADAL/MSIDWorkPlaceJoinConstants.h | 6306adc313557fb83fff087b901fe2f93e932ef3 | [] | no_license | pelpanagiotis/museum-ar-test | 0517fa146e99b713fb768b9bf1f4ba3544359ab7 | 02756f727d695963869e852e133cc8af60a351fe | refs/heads/master | 2023-02-01T05:05:49.204381 | 2020-12-15T12:28:38 | 2020-12-15T12:28:38 | 321,339,253 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 94 | h | ../../../../ADAL/ADAL/IdentityCore/IdentityCore/src/workplacejoin/MSIDWorkPlaceJoinConstants.h | [
"ppeltekis@arx.gr"
] | ppeltekis@arx.gr |
94f2397202dfd4f3d470cff22d1be7bb62a8d158 | 55c7fd1502422400c2130b01273af924899e9833 | /postrc_barry1and2.ysc.c | 65a73fb394ac3028f2870a31708c72ad553b1434 | [] | no_license | SpyFixx/GTAV-1.51-Scripts | 9145f6d6d2acb60999e357b24cee7afbbc29eba2 | 3181c409855e43c34423cc27a219d501da0e2d12 | refs/heads/master | 2022-12-11T08:57:45.060652 | 2020-08-12T04:39:17 | 2020-08-12T04:39:17 | 286,816,363 | 6 | 3 | null | null | null | null | UTF-8 | C | false | false | 14,215 | c | #region Local Var
var uLocal_0 = 0;
var uLocal_1 = 0;
int iLocal_2 = 0;
int iLocal_3 = 0;
int iLocal_4 = 0;
int iLocal_5 = 0;
int iLocal_6 = 0;
int iLocal_7 = 0;
int iLocal_8 = 0;
int iLocal_9 = 0;
int iLocal_10 = 0;
int iLocal_11 = 0;
var uLocal_12 = 0;
var uLocal_13 = 0;
float fLocal_14 = 0f;
var uLoc... | [
"spyfixx@protonmail.com"
] | spyfixx@protonmail.com |
c05dec0fd31cf3e2bf9d7431b3ed7f731499ab03 | e91f5fc4c064c4ff00f54414300b813b85d00ec6 | /Others/Heap.c | 96a85167444ad299e46604001fa4de2912658562 | [] | no_license | Hansum/Data-structure-notes | dd555ac11a87b56f8fd38f68e3f374c4d3863281 | 1ff7641657c4bd030da8fc8e33617b2c3f3e4f7a | refs/heads/master | 2021-07-13T14:48:28.076459 | 2020-07-15T10:18:01 | 2020-07-15T10:18:01 | 174,691,284 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,895 | c | #include <stdio.h>
#include <conio.h>
#define MAX 15
typedef struct {
int harr[MAX];
int last;
}Heap;
void init(Heap *H);
void insertHeap(Heap *H, int data);
int deleteMin(Heap *H);
void heapSort(Heap *H);
void display(Heap H);
int main() {
Heap h;
int ret;
init(&h);
insertHeap(&h, 12);
insertHeap(&h, 11);... | [
"christianvargan@gmail.com"
] | christianvargan@gmail.com |
28040f20003cda55aef25feb4da742b1f213f2f4 | 0f4b65bdd99e642402d489fdd662a7dc1d1441f5 | /testsuite/EXP_1/test460.c | 3ca9c63fb8784b5deaa7e2c0330e82ae1232cac8 | [
"MIT"
] | permissive | matthiaskrgr/CF3 | 157e4967f12a6e6a0eee0fa9421f7855d24047c5 | 981a49c2b1f0fb80e1d1778beb3f3ce8578338c3 | refs/heads/master | 2021-01-01T06:02:05.773732 | 2017-07-15T20:15:36 | 2017-07-15T20:15:36 | 97,335,407 | 0 | 0 | null | 2017-07-15T18:41:20 | 2017-07-15T18:41:20 | null | UTF-8 | C | false | false | 53,349 | c |
/*
CF3
Copyright (c) 2015 ishiura-lab.
Released under the MIT license.
https://github.com/ishiura-compiler/CF3/MIT-LICENSE.md
*/
#include<stdio.h>
#include<stdint.h>
#include<stdlib.h>
#include"test1.h"
int32_t x6 = -1;
static uint8_t x7 = 11U;
int16_t x8 = -1;
uint32_t x10 = 1U;
volatile uint64_t t2 = 927335526... | [
"ishiura-compiler@ml.kwansei.ac.jp"
] | ishiura-compiler@ml.kwansei.ac.jp |
3bc8e531a2ae86a6d8512784b8633799fae88070 | ae32a75f803b9d887d2b1094f9eb843591f90d67 | /src/test_msgs/msg/detail/unbounded_sequences__type_support.h | e11b071ff55513b2340ccfc0729a66db6ac99862 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | grassjelly/micro_ros_arduino | cb7a42d2bf988a41cd42622aaaee584d9ed33313 | dac1015b327749f43d34f10a21bde3d938a7731e | refs/heads/main | 2023-07-11T01:28:55.681685 | 2021-08-25T06:55:26 | 2021-08-25T06:55:26 | 399,783,299 | 1 | 0 | Apache-2.0 | 2021-08-25T10:47:11 | 2021-08-25T10:47:10 | null | UTF-8 | C | false | false | 897 | h | // generated from rosidl_generator_c/resource/idl__type_support.h.em
// with input from test_msgs:msg/UnboundedSequences.idl
// generated code does not contain a copyright notice
#ifndef TEST_MSGS__MSG__DETAIL__UNBOUNDED_SEQUENCES__TYPE_SUPPORT_H_
#define TEST_MSGS__MSG__DETAIL__UNBOUNDED_SEQUENCES__TYPE_SUPPORT_H_
#... | [
"pablogs9@gmail.com"
] | pablogs9@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.