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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d5e318f777695e26023f1f954756d0259961b116 | fea9068273f4cd339c3a64da818c0227943a4396 | /linked_list/delete_nth_node.c | 8e4ffa1add2e4fde3b203f8bceca7012e294774f | [] | no_license | dthesiya/data-structure | fad8be1f67e6a427df8a560d9abb9e8e8e785cf2 | 991cd8c3497fe7f0cf7a7b1bc37cea9f1e3e0b22 | refs/heads/master | 2021-01-09T06:16:28.545821 | 2017-02-17T05:46:57 | 2017-02-17T05:46:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 880 | c | #include<stdio.h>
#include<stdlib.h>
struct Node{
int data;
struct Node* next;
};
struct Node* head;
void Insert(int data);
void Print();
void Delete(int n);
void Delete(int n)
{
struct Node* temp1 = head;
if (n == 1)
{
head = temp1->next;
free(temp1);
return;
}
for (int i=0; i<n-2; i+... | [
"priyank.vora257@gmail.com"
] | priyank.vora257@gmail.com |
fcb361a53510796cc112804a2f7968ff37b27755 | 59cbac29b5b1ba602fa3f78c9ba276bff858ed7d | /Verifiable summation of read-once formula specified data/test.c | 660f8cd3bd2f2adc13f727771cdf36f56372b07c | [] | no_license | 16PJ1406500/NSFC61602304 | 2cbff6829fb89d0097a256076bff9b81d2bd2678 | 973b130bd9e49da19c3ea1f57f4c66502140ee21 | refs/heads/master | 2022-04-23T21:57:56.934897 | 2020-04-23T07:10:04 | 2020-04-23T07:10:04 | 240,675,045 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,745 | c | #include "sum.h"
#include <math.h>
int main(int argc, char **argv)
{
int r = 4;
int dr = 5;
int li = pow(dr,r);
//S
int sl = 102400;
int S[102400];
//int sl = 1;
//int SS[1] = {255};
int index = 0;
int d11[2] = {0,1};
int d10[3] = {2,3,4};
int d21[2] = {0,2};
int d20[3] = {1,3,4};
int d31[2] = {0,3};
... | [
"noreply@github.com"
] | 16PJ1406500.noreply@github.com |
467b1bb9d0f2cb20c6d2d8ee631daa2320ba11bb | ff272529c494bf6d3a49a20e9573ec3a69dc989b | /HDOJ/2549AC.c | 38407e62562a952995568e26a267399782fa6285 | [] | no_license | yumendy/OJ | c55ced02834a5d8151626d0229901d9393efbf07 | d543fe05522b59762d9d93f1fe7315bfce88beda | refs/heads/master | 2020-05-04T00:14:13.099667 | 2014-06-19T10:11:29 | 2014-06-19T10:11:29 | 21,010,610 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 330 | c | #include "stdio.h"
#include "string.h"
int main(int argc, char const *argv[])
{
int T, n, len;
char s[100];
char *i;
scanf("%d",&T);
while(T--)
{
scanf("%s%d",s,&n);
len = strlen(s);
i = strchr(s,'.');
if (len - (i - s + 1) < n)
{
printf("0\n");
}
else
{
printf("%c\n", *(i + n));
}
}
re... | [
"yumendy@163.com"
] | yumendy@163.com |
a9dc89f62c2448321e97eef56eae665642232413 | c1f9446b99de600666613bb4536d7fd651c0e08e | /components/esp32/esp_timer_esp32.c | 864167b2bdf2318cf1c2c585a7e4e2d26a1a77d4 | [
"Apache-2.0"
] | permissive | Smeedy/esp-idf | e641eed074fbc0c5d7cbf8a4748e8d0c485336ef | 98e5c475b31ce704e08bd1a48f5d2de3f0b216b0 | refs/heads/master | 2021-01-21T13:14:56.681589 | 2017-09-01T03:10:52 | 2017-09-01T03:10:52 | 102,110,420 | 0 | 0 | null | 2017-09-01T12:27:06 | 2017-09-01T12:27:06 | null | UTF-8 | C | false | false | 9,628 | c | // Copyright 2017 Espressif Systems (Shanghai) PTE LTD
//
// 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 applic... | [
"ivan@espressif.com"
] | ivan@espressif.com |
a24b91dd5502e094495a30afcebca9dc069401d0 | 2c694049f8ef4c723a05077e38ff67f9fadc1a63 | /Hw4/pwn/cpm_roberts.c | 3fecf430f29f6d2003e82beea67e687fd7dd9c5f | [] | no_license | tmp4/tmp | 0e62591db92aaee499a62270dc2af86ff9ce9e92 | 27d8cc1225b2998565c7f42792de40d306705d09 | refs/heads/master | 2020-03-28T10:00:48.430116 | 2018-11-20T23:11:21 | 2018-11-20T23:11:21 | 148,075,825 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,290 | c |
#include <sys/sendfile.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <assert.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <stdint.h>
#include <stdio.h>
#include <fcntl.h>
void win(int);
int vuln(int, char**, char**);
int asdf()
{
__a... | [
"you@example.com"
] | you@example.com |
2fd2b48e7119293d59ec8fb1e28ce59b41911727 | 2926c9639b3450f3d49c854f09b3f7deda3f0fda | /C/dbus_error_replies.h | 5c656af6165b37f354c9ed49edb13d6b88ad6962 | [
"MIT"
] | permissive | doseanwell/dbus-example-1 | ce91b23b6082399dbc9ad3016b60de12c161b8b2 | 768b26573b82503ffbdfc55849afecf9dabad1bb | refs/heads/master | 2020-05-17T17:10:06.638402 | 2019-04-29T09:25:21 | 2019-04-29T09:25:21 | 183,842,038 | 0 | 0 | null | 2019-04-28T02:04:45 | 2019-04-28T02:04:45 | null | UTF-8 | C | false | false | 583 | h | #ifndef __DBUS_ERROR_REPLIES_H__
#define __DBUS_ERROR_REPLIES_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dbus/dbus.h>
void error_reply_unknown_property(DBusConnection *connection, DBusMessage *message, const char *prop_name);
void error_reply_unknown_interface(DBusConnection *connection, ... | [
"1402330827@qq.com"
] | 1402330827@qq.com |
6094bc82633f466ba712c5c438d12288ef23b906 | 092881aeea63941a82bae9e362171f1a03ae5dea | /netengine/netengine/include/ne_crypt/rsah/md5.h | c9f48ebcb647b30740c176dd9abe8355697b1b22 | [] | no_license | a1406/ndproj | 685f371f0bcd4a9354005116176126161efe93fa | d7b5235b5ea7dc7319bb5fd8a54871997b7f3c8a | refs/heads/master | 2016-09-16T15:02:14.941265 | 2013-02-05T04:13:40 | 2013-02-05T04:13:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,627 | h | /* MD5.H - header file for MD5C.C
*/
/* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
rights reserved.
License to copy and use this software is granted provided that it
is identified as the "RSA Data Security, Inc. MD5 Message-Digest
Algorithm" in all material mentioning or referencing ... | [
"jacktang@jacktang-MS-7680.(none)"
] | jacktang@jacktang-MS-7680.(none) |
902fe899eca95af746c63959284dda70dc298e6d | bebcfadd58586cbbacb306dc6dafc0b25bd285bd | /LWIP/App/lwip.c | eeb3867293649d3727d5ce12c034e3d3be11db67 | [] | no_license | ucayalifish/FRTNetHub | d18d538ac667f8a4a07b6f356d3b22e24d7dc530 | 685472ccb3296fc5120043bf0556b53a0957d709 | refs/heads/main | 2023-03-31T01:31:00.039341 | 2021-04-09T19:58:43 | 2021-04-09T19:59:49 | 354,589,781 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,509 | c | /**
******************************************************************************
* File Name : LWIP.c
* Description : This file provides initialization code for LWIP
* middleWare.
******************************************************************************
* @attentio... | [
"ucayalyfish@gmail.com"
] | ucayalyfish@gmail.com |
64e65f01f1dd0effe9dc1b2d708b0d169d7a7a94 | 7b7396688803ef0a7d13cc46545f64ddec8f5650 | /example_code/getHisto.C | c5dad1141b20052e9002d4daf1f874151f98a661 | [] | no_license | bpenning/RootTutorial | 907cf4d082828228c45e57ed21d1e836bd908721 | 767e73e677f6a17686f48f49462bcd74eeabbc1b | refs/heads/master | 2021-01-01T16:37:51.612889 | 2017-07-20T21:01:25 | 2017-07-20T21:01:25 | 97,877,213 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 162 | c | {
gROOT->Reset();
gROOT->SetStyle("Plain");
TFile* _file=new TFile("histo.root","OPEN");
TH1F* _myH1 = (TH1F*)_file->Get("myHisto");
_myH1->Draw();
}
| [
"penning@cern.ch"
] | penning@cern.ch |
3e8d819f318e16e0e918887747636cfb5b046c6e | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/reactos/dll/opengl/mesa/extr_texture.c_sample_1d_linear_mipmap_linear.c | d585d20a59be6dfc5864c0b86b8514b464730099 | [] | no_license | isabella232/AnghaBench | 7ba90823cf8c0dd25a803d1688500eec91d1cf4e | 9a5f60cdc907a0475090eef45e5be43392c25132 | refs/heads/master | 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,844 | c | #define NULL ((void*)0)
typedef unsigned long size_t; // Customize by platform.
typedef long intptr_t; typedef unsigned long uintptr_t;
typedef long scalar_t__; // Either arithmetic or pointer type.
/* By default, we understand bool (as a convenience). */
typedef int bool;
#define false 0
#define true 1
/* Forward d... | [
"brenocfg@gmail.com"
] | brenocfg@gmail.com |
2c3499fd19679538eed336429b4d664d34e94e1c | 277c839480a5f6a6d6d3a4a124aa57e438f8b7dc | /the_C_programming_language_solution/Chapter_2/excercise_2-01.c | f11defcd180dc9c7cac23838aaea7c1b2d08bb74 | [] | no_license | Fatekiller23/C_STUFF | 681ab4b4b0fc078230fdd4b69f9af32bdfd2f35e | 12cb6908074ff0f646f7306e6f0e861b27817ad9 | refs/heads/master | 2021-05-06T03:51:39.362077 | 2018-08-15T03:28:00 | 2018-08-15T03:28:00 | 114,888,279 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,153 | c | /*
Exercise 2-1. Write a program to determine the ranges of char, short, int, and long
variables, both signed and unsigned, by printing appropriate values from standard headers
and by direct computation. Harder if you compute them: determine the ranges of the various
floating-point types.
solution:
watch out! As t... | [
"mgsf@163.com"
] | mgsf@163.com |
61136a21629dea1b1f60e331503feccb53b0ae5f | 50bc0f2aaca5c00dd7b4c85d621afa962278013f | /sommelier/sommelier.h | 00debc6b289ac555d036bd1c95d98cb467fedabb | [] | no_license | msgpo/pH | 316e3b2036e81a73fee7c35db64271c4ff7eab46 | 7f3b3aa40990c46349062335dbf96adea41e7664 | refs/heads/master | 2022-02-22T23:37:51.308661 | 2019-10-02T20:41:02 | 2019-10-02T20:41:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,170 | h | // Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef VM_TOOLS_SOMMELIER_SOMMELIER_H_
#define VM_TOOLS_SOMMELIER_SOMMELIER_H_
#include <sys/types.h>
#include <wayland-server.h>
#include <wayland-u... | [
"bruce@subgraph.com"
] | bruce@subgraph.com |
612d8c3837fada47bdac6be67f1c871e3a914bae | 29c0a3147876fa23327d0dfbf7efaf73e1098bc9 | /zykronix/larus/code/plfm/sm/sm_event.h | 9a4c3c1a7d1fd0c07ebca20eb4676d179ebcad17 | [] | no_license | ming641121/androidsimple | 7646d56d23a7eeda7dfc7942513e9d0fe8977420 | d63aab13a29e6033046ed1a3c0ba6b958d98a424 | refs/heads/master | 2021-09-02T22:55:24.181743 | 2018-01-04T01:11:59 | 2018-01-04T01:11:59 | 115,328,708 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,511 | h | /*
*Copyright(C) 2006, All Rights Reserved, by
*AHOYA Networks, Taiwan
*
*Abstract:
*
*File Name: sm_event.h
*
*Define all Event objects for SM Module
*
*Note:
*
*Author(s):
*
*/
#ifndef _SM_EVENT_H_
#define _SM_EVENT_H_
#include "siw_events.h"
#include "siw_trace.h"
/*
*=============================... | [
"ming641121@gmail.com"
] | ming641121@gmail.com |
0d72e5e6091cc6d8708835ca8af95891a62a3318 | c7f491021405bf8679d0067801d9b731bdca13f7 | /tests/media3.c | 34d91371e12976e194cbda14dc07fcde282e186a | [] | no_license | Richsan/compilerfim | d8269c67bf04c78bfd91fe978ceaa24eb4ba772e | 59147e451577f1be3fab502265c2b2a86ce260d7 | refs/heads/master | 2021-01-20T08:48:40.778510 | 2015-06-11T14:48:15 | 2015-06-11T14:48:15 | 37,266,999 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 324 | c | #include<stdio.h>
#incude<string.h>
#include<stdlib.h>
int main(){
double x1,x2,x3,m;
printf("%s ","The first note: ");
scanf("%lf",&x1);
printf("%s ","The second note: ");
scanf("%lf",&x2);
printf("%s ","The third note: ");
scanf("%lf",&x3);
m = ( x1 + x2 + x3) / 3;
printf("\n%s %lf ","The average is: ",m);
return 0... | [
"you@example.com"
] | you@example.com |
8082c11dacdfcc0a8d8b91c83f5aaa40a9a75f73 | ec3a381939fb3359f02832068220c0a06716f2b1 | /4.Code/10.PS2_control/Source/APP/sccb.h | d5a82293d48cfa75c7c687543488ae2f348bb48c | [] | no_license | YahboomTechnology/STM32-Visual-Tracking-Car | ec28a3710887e5a641a4ea3a469be55b401619b3 | f4d6350d3095e56993c62f2df2b99d4d83190863 | refs/heads/master | 2020-09-11T01:46:52.839213 | 2020-08-31T11:40:01 | 2020-08-31T11:40:01 | 221,896,781 | 3 | 1 | null | null | null | null | ISO-8859-13 | C | false | false | 627 | h | #ifndef __SCCB_H
#define __SCCB_H
#include "sys.h"
#define SCCB_SDA_IN() {GPIOA->CRH&=0XFF0FFFFF;GPIOA->CRH|=0X00800000;}
#define SCCB_SDA_OUT() {GPIOA->CRH&=0XFF0FFFFF;GPIOA->CRH|=0X00300000;}
#define SCCB_SCL PAout(12) //SCL
#define SCCB_SDA PAout(11) //SDA
#define SCCB_READ_SDA PAin(11) ... | [
"2448532184@qq.com"
] | 2448532184@qq.com |
9823573467e8296de989419c0fa00cc4533b6503 | 7c99975fcdfc65e863fa6aa53528f71933221ab5 | /MDK-ARM/Drive/IMU/MTi_630.h | 7f751c464a5be2c849970b7c132f92804c93c9fe | [] | no_license | whcdd/embedded | c5fa90c60a09858065b7bf597892f7f90bd79d1c | 61f901927e4d5db88691b3a15bbed94e40aee8ff | refs/heads/master | 2022-12-30T18:09:57.177009 | 2020-10-21T01:42:19 | 2020-10-21T01:42:19 | 305,877,197 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,219 | h | #ifndef __MTI_630_H
#define __MTI_630_H
#include "config.h"
/** @defgroup IMU BUFFER SIZE
* @{
*/
#define MTi_630_RXBUFFSIZE 130
/**
* @}
*/
/** @defgroup checkSumComplement Status
* @{
*/
#define VALID 1
#define INVALID 0
/**
* @}
*/
/** @defgroup Buffer definition
* @{
*/
#define MTI630_BUFFE... | [
"dandanc1992@163.com"
] | dandanc1992@163.com |
7b8628fcfa6cab6b06ce9f4c4faf00e3b7cf0bd0 | 23a7b6c0984ea2dcb7509f59b581f2af374535c7 | /test/sintatico/test-sema-main-last-decl-ok.in | 67e2231ab276eede211caaa2c4e294378b9ca595 | [
"MIT"
] | permissive | thelink2012/cminus | 6387d06f31f712d8b85e4c816e65c154bff22c98 | 7709dc77db40552c49e668eb7b5f6ec1fd315856 | refs/heads/master | 2020-03-09T07:09:10.685685 | 2018-12-24T03:14:08 | 2018-12-24T03:32:33 | 128,657,951 | 1 | 1 | MIT | 2020-01-28T12:50:50 | 2018-04-08T15:59:01 | C++ | UTF-8 | C | false | false | 19 | in | void main(void){
}
| [
"thallesyann@hotmail.com"
] | thallesyann@hotmail.com |
41e433444727d4f063bdca2ef68073e8e5162fe6 | 97e53e8028ffb9d3f736a0999cc470f9942ddcd0 | /08 数据库技术/09 数据备份恢复/002 SQL Server数据库备份与恢复-例1/SQLstockup/Resource.h | 040a1719c50fe23a26c9e864314d75c934752ca9 | [] | no_license | BambooMa/VC_openSource | 3da1612ca8285eaba9b136fdc2c2034c7b92f300 | 8c519e73ef90cdb2bad3de7ba75ec74115aab745 | refs/heads/master | 2021-05-14T15:22:10.563149 | 2017-09-11T07:59:18 | 2017-09-11T07:59:18 | 115,991,286 | 1 | 0 | null | 2018-01-02T08:12:01 | 2018-01-02T08:12:00 | null | UTF-8 | C | false | false | 802 | h | //{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by SQLstockup.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#define IDS_ABOUTBOX 101
#define IDD_SQLSTOCKUP_DIALOG 102
#define IDR_MAINFRAME ... | [
"xiaohuh421@qq.com"
] | xiaohuh421@qq.com |
031cf0c607b21140391d98da492412fb2570a62b | 6247645bcf9e88080f7ae8e85af04cfef17dfc08 | /unix/philo/libft/ft_strtrim.c | 20dbbabf725509caf6a4318b3852069192e1a2d2 | [] | no_license | mbougrin/42 | fad8c61664b0ab8007f19f25877363a88dc67112 | 10b831d503812650172b8689f7667631fd6060ca | refs/heads/master | 2020-04-05T23:28:38.918042 | 2017-08-01T14:43:34 | 2017-08-01T14:43:34 | 71,226,609 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,353 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strtrim.c :+: :+: :+: ... | [
"mbougrin@e3r2p18.42.fr"
] | mbougrin@e3r2p18.42.fr |
f5a639c4e9d53676c916ed3d7bc085a72ae012f7 | 253e07c776ab279cb9adb8884d1f2e4b1558164b | /Lepus meus liquifacitur FINAL/Source/Palette Source/CMultiPanelButton.h | 2a40a4184aa79b1e74259d2f9ed0f3766fe54482 | [] | no_license | suzannealdrich/cs108-hw7-bunnyworld | 18169b2ef869aeec9670f1b5ef6353d3649eef55 | 6de369c6841871d15e5685fcbf9b5cb1d42d4e10 | refs/heads/master | 2016-09-11T10:10:33.518887 | 2014-10-23T07:16:52 | 2014-10-23T07:16:52 | 25,672,289 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 336 | h | #include <LBevelButton.h>
#include <LMultiPanelView.h>
// the button for playing sounds in shape editor
class CMultiPanelButton : public LBevelButton {
public:
enum { class_ID = FOUR_CHAR_CODE('cmpB') };
CMultiPanelButton(LStream *inStream);
void HotSpotResult(SInt16 inHotSpot);
private:
int mDir;
LMultiPane... | [
"suzanne@sjaconsulting.com"
] | suzanne@sjaconsulting.com |
4f7ca7e26a4929fd682ba808dce1b0661d5da4fa | 5cbb7149ac163c9abe47e00bf89008bedee186a0 | /C/longest_increasing_subsequence.c | 1c4d10e511d49bb1eee7ece4857ec79208022b9d | [] | no_license | ujjawalmodanwal/cops_algorithms | 51e567beaac19ffbd038c2c7a9e0c3ea8788f047 | ab928fed1f79ccb01796a5cba5c7f4518f3d97e0 | refs/heads/master | 2022-12-27T01:18:04.506394 | 2020-10-18T06:58:46 | 2020-10-18T06:58:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,257 | c | #include<stdio.h>
void find_longest_inc_subseq(int size, int array[])
{
int len_lis[size];
len_lis[0]=1;
for(int i=1;i<size;i++)
{
len_lis[i]=1; //initialising all len_lis elements to 1
for(int j=0;j<i;j++)
{
if(array[i]>array[j]&& len_lis[j]+1>len_lis[i])
len_l... | [
"noreply@github.com"
] | ujjawalmodanwal.noreply@github.com |
10d8d23725020225c3e60287cc066e43ed7e059b | a6beae6126058d48a81ca555eb9b8bea53277aa0 | /Algorithms/algo(insertionsort).c | b926f890e7736bf51b0e2587c59f3963e1da325b | [] | no_license | daniela-mejia/C-idf19- | d15d4da1dbe73569c32962fe9acef6e8b880bb35 | 1e170aa8ff30bc099f9223054f62ff606e6b1fc9 | refs/heads/master | 2020-04-27T18:21:35.443478 | 2019-06-07T14:53:06 | 2019-06-07T14:53:06 | 174,565,815 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,563 | c | //INSERTION SORT is a simple sorting algorithm that builds the final sorted array (or list) one item at a time.
#include <stdio.h>
#include<conio.h>
#define size 5
void insertion_sort (int array[], int n);
int main ()
{
int i, n, array[size];
// clrscr() It is a predefined function in "conio.h" (c... | [
"noreply@github.com"
] | daniela-mejia.noreply@github.com |
36ee7e8ec228929f5496b6fe89655efc3040d3c6 | 65037db3d3c588ed7aadf82086560f30347d46f4 | /Q1/lista.h | 790a19e788f46d95c0fe8084a643f8f5fc6c57ac | [] | no_license | Gabriel-Santiago/EstruturaDeDados_C | 1c4b423517d3e2b9f50fc102a5abaab908beb90c | bb2cd331582007876c72ed78dbdc4dc594e6f826 | refs/heads/master | 2023-07-10T01:51:43.652369 | 2021-08-18T12:31:11 | 2021-08-18T12:31:11 | 388,129,317 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 556 | h | typedef struct lista Lista;
Lista* lst_cria();
int lst_vazia(Lista *l);
Lista* lst_insere(Lista *l, int info);
Lista* lst_insere_ordenado(Lista *l, int info);
void lst_imprime(Lista *l);
Lista* lst_busca(Lista *l, int info);
Lista* lst_remove(Lista *l, int info);
void lst_libera(Lista *l);
int menores(Lista *l... | [
"gabrielsrmj@alu.ufc.br"
] | gabrielsrmj@alu.ufc.br |
0d0ff719a4d5995062e7036614f488196bad6eff | a1d02f65abfd25f9d260ab2b41bee082df669907 | /src/crypto/c_threads.h | 002f574a8a567b7157a01a0618b98d412b5d0117 | [
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kosowwwa/TroutBucks | 2bbf42d2631b1faff94fcac7eadf86e021490606 | 1e0d2f5446f434a078a40994ea526f1badc9be06 | refs/heads/main | 2023-04-14T13:27:30.514457 | 2021-04-25T14:56:05 | 2021-04-25T14:56:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,785 | h | // Copyright (c) 2019-2020, The Troutbucks 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, this list ... | [
"76274154+71Zombie@users.noreply.github.com"
] | 76274154+71Zombie@users.noreply.github.com |
c1bf72aae09daa7836bfc9f97a7c5e22c109e0d0 | a0506ed7ec69f5cd26f5dd9e9a5340da9025cf4f | /main.h | 33e593ef157e03389c6a01605200daa102c4c82a | [] | no_license | vlcc/basplice | 7c521e6dc92b05a0c344623f689da3ebde905971 | 09c20d91a8807c8f4e34a361e6524cd331c1069a | refs/heads/master | 2020-12-24T13:21:07.256307 | 2012-06-20T07:14:19 | 2012-06-20T07:14:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 695 | h | #ifndef BWA_MAIN_H
#define BWA_MAIN_H
#ifdef __cplusplus
extern "C" {
#endif
//int bwa_fa2pac(int argc, char *argv[]);
//int bwa_pac2cspac(int argc, char *argv[]);
//int bwa_pac2bwt(int argc, char *argv[]);
//int bwa_bwtupdate(int argc, char *argv[]);
//int bwa_bwt2sa(int argc, char *argv[]);
int bwa_index_main... | [
"bujingde@gmail.com"
] | bujingde@gmail.com |
69a2bb0e160261cf78a9208a1273424411eb290d | e86fc96ecdff6d8ae5884ab75bc5bbf82e0c5961 | /STM32F4xx/CSG/QCSG_Task/CH_RS485_AMR_Task.c | 9b2a379de70ec16a7ee015e86a89d28f838ee33c | [] | no_license | gdgly/NUC97X_JS | 80dcf3e749d836ed12ea5bdffba289b0db0ae3f6 | b8a5193b1d447f25864483a55bad4befe441b956 | refs/heads/master | 2022-12-05T11:14:52.268951 | 2020-08-18T11:26:04 | 2020-08-18T11:26:04 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 50,239 | c | /*************************************************
版 权:正泰仪表智能终端部
文 件:QCSG_AFN12.c
作 者:zhaoyun
版 本:1.00
日 期:20170601
描 述:南网AFN12处理文件
*************************************************/
/* Includes ------------------------------------------------------------------*/
#include <string.h>
#include <stdio.h>
#include ".... | [
"slyushihao@qq.com"
] | slyushihao@qq.com |
21641df956c9dd0bbbaf0acd5021a62025a2b66a | fbdb3e4df3925b330739e599d7f539a5aea4f163 | /kungfu/skill/baibian-daxue.c | 98265d65477a50d820e5ffba204e26cec7f47591 | [] | no_license | MudRen/ZHLib | 2be4566998800d1a8ed50bf379d0e43a7c97e8ac | 73111626fed37f302ca433dd1628730ca07e7dc2 | refs/heads/master | 2020-04-04T15:43:26.136616 | 2018-11-04T04:42:20 | 2018-11-04T04:42:20 | 156,049,634 | 2 | 3 | null | null | null | null | GB18030 | C | false | false | 4,050 | c | // baibian-daxue.c
inherit SKILL;
mapping *action = ({
([ "action":"$N一招「指点江山」,手中$w疾点向$n的期门穴!",
"force" : 60,
"dodge" : 20,
"damage" : 22,
"lvl" : 0,
"damage_type" : "刺伤",
"skill_name" : "指点江山",
]),
([ "action":"$N吐气开声一招「银钩铁划」,$w如灵蛇吞吐,向$n白海穴戳去",
"force"... | [
"i@oiuv.cn"
] | i@oiuv.cn |
e2d320abce08bba8e0640be05bb9970cd57e8252 | 0c5d3b088080577388f5766431487534f93a2c40 | /Github-Projects-Origin/cygwin-master/winsup/testsuite/winsup.api/mmaptest04.c.bak.c | 21074ac03e0b75b19d035312dc5a96e9c413b743 | [] | 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 | 2,242 | c | #include <assert.h>
#include <string.h>
#define INCLUDEMAIN
#include <sys/types.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#ifndef O_BINARY
#define O_BINARY 0
#endif
int
main ()
{
char *data, *data2 = NULL, *data3;
int i, pagesize;
i... | [
"wangcong15@mails.tsinghua.edu.cn"
] | wangcong15@mails.tsinghua.edu.cn |
1d7bcc1b0a048148ea97135deaccf9206c82efb3 | 9aa44ffde2363a624c7a738524fb8de19b2ad27b | /Software/display/mbed-src/targets/cmsis/TARGET_STM/TARGET_STM32F3XX/stm32f30x_can.h | 725783248e9317552baf12b442452153eb1d5aaf | [] | no_license | nickmolo/ECE477 | b21417f240ff7cb5825e700f1ec18a44a168c24e | e8b94b1dd26828c383c3bb1a9f5d433efbe441a4 | refs/heads/master | 2016-08-03T20:22:07.512073 | 2015-12-16T07:00:39 | 2015-12-16T07:00:39 | 41,696,866 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 28,217 | h | /**
******************************************************************************
* @file stm32f30x_can.h
* @author MCD Application Team
* @version V1.1.0
* @date 27-February-2014
* @brief This file contains all the functions prototypes for the CAN firmware
* library.
*******... | [
"nick.molo@gmail.com"
] | nick.molo@gmail.com |
13bddd1e17d431f9df129e9add177824e0374270 | ac25fc53371c49cdfc796e2a60e368c2a69c4c77 | /native/nf-interpreter/targets-community/CMSIS-OS/ChibiOS/I2M_ELECTRON_NF/nanoBooter/main.c | b7890058ca0a3bf35c26c627183953948a054caf | [
"Apache-2.0",
"MIT"
] | permissive | nanoframework/metadata-processor | 7bdfe5d3fa88dbdbbc4eef34e1e8fb09fb9eb178 | 607000b298a4292f5562218e4e73bbf0f8b4b931 | refs/heads/main | 2023-07-05T15:59:32.927702 | 2023-06-02T12:34:08 | 2023-06-02T13:10:42 | 192,704,874 | 5 | 12 | MIT | 2023-06-02T12:17:04 | 2019-06-19T09:47:36 | C | UTF-8 | C | false | false | 2,254 | c | //
// Copyright (c) 2017 The nanoFramework project contributors
// See LICENSE file in the project root for full license information.
//
#include <ch.h>
#include <hal.h>
#include <cmsis_os.h>
#include <usbcfg.h>
#include <swo.h>
#include <targetHAL.h>
#include <WireProtocol_ReceiverThread.h>
#include <nanoPAL_BlockSt... | [
"jose.simoes@eclo.solutions"
] | jose.simoes@eclo.solutions |
9f3e0c722e7fb7bbe2af0e8bd829bc246348438a | 394b01104fbfb60bccb7604fa6527355142609e3 | /50.005/Labs/Lab4/shellPrograms/shellPrograms.h | fa9f63dbbda3c05fc3723fafd35ca2a2e7e0e14e | [] | no_license | gexty444/school-courses | 2f1d516d1a97c7d8721955bc69836f869775ad3f | 0b12f607c505d9e065904a9ebcebf18e4cb46ebe | refs/heads/master | 2021-07-14T16:56:36.842712 | 2020-09-30T03:05:31 | 2020-09-30T03:05:31 | 182,036,953 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 759 | h | //
// shellPrograms.h
// shellPrograms
//
// Created by Natalie Agus on 11/01/19.
// Copyright © 2019 Natalie Agus. All rights reserved.
//
#include <sys/wait.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <dirent.h>
#include <errno.h>
/* "readdi... | [
"34784796+gexty444@users.noreply.github.com"
] | 34784796+gexty444@users.noreply.github.com |
34a746254594424249f37d3426bf2a4eb69f72d7 | 67232f2da5edc7757fd29d8cddf823ceca53e118 | /chapter_4/projects/ex6.c | 85f327f42c0997575a002cb741f397ff5c439028 | [] | no_license | rgonzalezp/c_programming_a_modern_approach_solutions | a1ad094e17a64f4c3c25d5f6eea172888c3e5d29 | 5e5aa39c4f8e9924798d40e52546aed12e1ff27c | refs/heads/main | 2023-04-13T14:21:36.129237 | 2021-04-17T23:03:21 | 2021-04-17T23:03:21 | 355,718,027 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 459 | c | #include <stdio.h>
int main(void){
int a,c,e,g,i;
int b,d,f,h,j;
int first,last;
int f_sum,s_sum, check;
printf("Enter the first 12 digits of an EAN: ");
scanf("%1d%1d%1d%1d%1d%1d%1d%1d%1d%1d%1d%1d", &first,&a,&c,&e,&g,&i,&b,&d,&f,&h,&j,&last);
f_sum = a + e + i + d + h + last;
s_su... | [
"rgonzalezp@bitbucket.org"
] | rgonzalezp@bitbucket.org |
a9ebd2acab72ac49dbd3b1cb0db4d6eaff79a803 | 29c655f07c73620a6732215412bfb07be65c683c | /Win10_1903_19H1_18247/x64/System32/ntoskrnl.exe/ALL_FUNCTIONS.h | 2e1766cc4a0abe80bc910e25af1c43cf73072d63 | [] | no_license | cpkt9762/headers | dd7e0a775824e4f23e1d7c2aa1d5154b39ba2622 | 55fb4122911c2529d99cb8a9bf1bcaed25f07952 | refs/heads/master | 2020-04-29T11:27:29.072770 | 2019-03-11T19:55:05 | 2019-03-11T19:55:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 570,774 | h | /*
$$0
$$1
$$10
$$11
$$12
$$13
$$14
$$15
$$16
$$17
$$18
$$19
$$1a
$$1b
$$1c
$$1d
$$1e
$$1f
$$2
$$3
$$4
$$5
$$6
$$7
$$8
$$9
$$a
$$b
$$c
$$d
$$e
$$f
??0SC_DISK@@QEAA@XZ
??1SC_DEVICE@@UEAA@XZ
??1SC_DISK@@UEAA@XZ
??3SC_ENV_ALLOCATOR@@SAXPEAX@Z
??_ENT_DISK@@UEAAPEAXI@Z
??_ESC_DEVICE@@UEAAPEAXI@Z
??_ESC_DISK@@UEAAPEAXI@Z
??_... | [
"w.benny@outlook.com"
] | w.benny@outlook.com |
168b63f09f0f44bf567eaf8b1fe4f532530ced5c | 7eaf54a78c9e2117247cb2ab6d3a0c20719ba700 | /SOFTWARE/A64-TERES/u-boot_new/drivers/video/sunxi/disp2/disp/lcd/lcd_source.h | fb8f4fd6b7724146a86533c5b0d97d3f918dee12 | [
"LicenseRef-scancode-free-unknown",
"Apache-2.0",
"GPL-2.0-or-later"
] | permissive | OLIMEX/DIY-LAPTOP | ae82f4ee79c641d9aee444db9a75f3f6709afa92 | a3fafd1309135650bab27f5eafc0c32bc3ca74ee | refs/heads/rel3 | 2023-08-04T01:54:19.483792 | 2023-04-03T07:18:12 | 2023-04-03T07:18:12 | 80,094,055 | 507 | 92 | Apache-2.0 | 2023-04-03T07:05:59 | 2017-01-26T07:25:50 | C | UTF-8 | C | false | false | 5,777 | h | /* linux/drivers/video/sunxi/lcd/video_source_interface.c
*
* Copyright (c) 2013 Allwinnertech Co., Ltd.
* Author: Tyle <tyle@allwinnertech.com>
*
* Video source interface for LCD driver
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Licen... | [
"gamishev@gmail.com"
] | gamishev@gmail.com |
2371312b393d742f110f8f747f8179639b8dc8ac | 27f0d00f25dbd413c83f7c9268298937ee77ef11 | /protobrusher.h | 12f94574ebc6ebfed61135177d0845fa64c8c761 | [] | no_license | orborde/sdl_stuff | 4431a551acb66128bb3313a98be56897128fb279 | ada25dc9ab77bbe483db9f0da82d115cb6d8a665 | refs/heads/master | 2021-01-10T18:30:52.746269 | 2014-02-24T03:29:37 | 2014-02-24T03:29:37 | 17,124,241 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 612 | h | #ifndef PROTOBRUSHER_H
#define PROTOBRUSHER_H
#include <SDL/SDL.h>
#include "matrix.h"
typedef struct
{
unsigned char R, G, B;
}
color24;
typedef struct
{
color24 colors[3];
int pointID[3];
}
Shaded_Triangle;
// returns 0 if brush should not be drawn due to backface culling
// returns 1 if it hasn't been eliminat... | [
"orborde@d4908a15-9b18-0410-9c1c-f40699104922"
] | orborde@d4908a15-9b18-0410-9c1c-f40699104922 |
7d4200d38e0d8a8e9b70fcbb568ef7da9776f93c | f7fb35e84680dc45786c862054a4a40cbad61e46 | /vendor/qcom/proprietary/mm-camera/mm-camera2/media-controller/modules/isp2/hw/sub_module/isp_sub_module_util.h | 0c966f201e23cb3d94173ec8e4a24faba9c48973 | [] | no_license | sethsong90/vendor_qcom_new | accce62fd862d219742954992a2f19729549f98a | 879eb95b4bd4843e058b5ebae832f60d8afc7d73 | refs/heads/master | 2021-01-13T06:51:34.856302 | 2017-01-03T11:12:20 | 2017-01-03T11:12:20 | 81,229,492 | 5 | 4 | null | null | null | null | UTF-8 | C | false | false | 6,488 | h | /* isp_sub_module_util.h
*
* Copyright (c) 2012-2014, 2016 Qualcomm Technologies, Inc.
* All Rights Reserved.
* Confidential and Proprietary - Qualcomm Technologies, Inc.
*/
#ifndef __ISP_SUBMODULE_UTIL_H__
#define __ISP_SUBMODULE_UTIL_H__
/* mctl headers*/
#include "mtype.h"
#include "media_controller.h"
#inclu... | [
"xin.qi@sim.com"
] | xin.qi@sim.com |
a927c0b6b45fb0de0281900a22e2ed2920d5eae1 | 8d1725e2bedd244d7bc865df75317a85d2468e93 | /qt_gui/c_lib/include/qt_gui_c_QHideEvent.h | 7516987980540ea11d867f01f60a76583220eac9 | [] | no_license | aristotle9/qt_generator-output | 04100597f923b117314afcc80f0ea85417d342be | be98dd92de8d2e2c43cf8e9e20ebd1316fd4b101 | refs/heads/master | 2021-07-23T12:20:15.277052 | 2017-10-24T08:20:03 | 2017-10-24T08:20:03 | 108,097,475 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 459 | h | #ifndef QT_GUI_C_QHIDEEVENT_H
#define QT_GUI_C_QHIDEEVENT_H
#include "qt_gui_c_global.h"
extern "C" {
QT_GUI_C_EXPORT QEvent* qt_gui_c_QHideEvent_G_static_cast_QEvent_ptr(QHideEvent* ptr);
QT_GUI_C_EXPORT QHideEvent* qt_gui_c_QHideEvent_G_static_cast_QHideEvent_ptr(QEvent* ptr);
QT_GUI_C_EXPORT void qt_gui_c_QHideEv... | [
"lanfan.1987@gmail.com"
] | lanfan.1987@gmail.com |
acfbb12afcee254b300ae28aa46dcd8eab478511 | 529ac7e556a8fe7129a4ac99920b9164311d9d05 | /EXE9.c | 2cd81adffacc7cf6eb21643d0db61fd7a3383804 | [] | no_license | ShahafEdri/WaterMyGarden | 16facb8648508596e651452be5e142725159131b | 525525ba382ea80c6369af8f3f35a47048f6369d | refs/heads/master | 2023-06-08T12:06:16.943590 | 2021-07-04T21:42:24 | 2021-07-04T21:42:24 | 381,411,538 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 10,353 | c |
// College: HIT - Holon Institute Of Technology
// Course: CES - Computer Embedded Systems
// Course Instructor: DR. Avichai Aharoni
// File Name: Plant-B - water and shading systems LTD
// Author: Shahaf Edri & Aviv Aharon
// Date: 29/06/2021
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <math... | [
"edri.sue@gmail.com"
] | edri.sue@gmail.com |
c07056cc8dfe716b4db863fbb518244623cc12df | ca010a9bf7c092e3ef3e042fd4658f8dcc4bf669 | /libft/ft_lstdelone.c | b743dec7f5a4f2d2933d8e9fe749deffaffb40b8 | [
"MIT"
] | permissive | iamtemazhe/ft_ssl | d40e797f4852c8574d2fa2802075731135a7d09d | bfa83a4822bb318cb54b1f6d9654c327036d139a | refs/heads/master | 2023-03-04T01:47:15.213395 | 2021-02-11T09:56:21 | 2021-02-11T09:56:21 | 337,953,301 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,114 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_lstdelone.c :+: :+: :+: ... | [
"iamtemazhe@yandex.ru"
] | iamtemazhe@yandex.ru |
14a251a08a2d70de74a62a679d69e2964733d1ca | ec7a532aeeef39b514c835ccab34b5c821dfb4f7 | /errno.h | 3e6b3e09dd6d9d8c328c01d4fbec05fb32a2f79d | [] | no_license | UCBerkeleySETI/etfits_api | e0bdc3e37b8760e0f0bd6bc103bb62d6de2a41eb | 0e5f632afa0e7cbd5c5b00a023b2444fdad55886 | refs/heads/master | 2021-06-04T16:55:30.019171 | 2020-05-15T22:57:13 | 2020-05-15T22:57:13 | 66,680,746 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 221 | h | #ifndef ERRNO_H_INCLUDED
#define ERRNO_H_INCLUDED
//not sure what else to put here
#define CFITSIO_ERROR 1 /*CFITSIO error thrown*/
#define RF_OUT_OF_RANGE 2 /*sky frequency is not within range*/
#endif
| [
"Kara Gieseking"
] | Kara Gieseking |
b6557ebe937741c4ab1c360aaca38956b1867b53 | 5792b184e71a9de7779e0bd21b6833f8ddfdb4b5 | /sysvr3/301/usr/src/lib/libcurses/screen/deleteln.c | 2e51748441393bdfc8e18aa654031f9b56e3d151 | [] | 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 | 897 | 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 "@(#)curses:screen/deleteln.c 1.3.1.1"
# include "curses.ext"
/*
* This rou... | [
"rwoodsmall@gmail.com"
] | rwoodsmall@gmail.com |
efd6c6f7ee6862b8a10a7bb8f673ba10d2519cc9 | d09155df05239ea51279818b79dcad5e188bc2f5 | /firmware/mc_firmware.X/peripherals/waveform_dac.c | a8d073fa881798dff53ab0fc520d658c4ac54a2d | [
"BSD-2-Clause-Views"
] | permissive | kitspace-forks/SAIMscannerV3 | 93657241bf1fe6c72685d316e8c25392809ee5d9 | 80819d26b2d570e266a7220d5379a96686e4b835 | refs/heads/master | 2020-07-25T10:42:49.612554 | 2019-07-18T22:05:29 | 2019-07-18T22:05:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,233 | c | /*******************************************************************************
* @file waveform_dac.c
* @brief Definitions for the twin waveform output conditioning DACs
*
*
* @author Marshall Colville (mjc449@cornell.edu)
*
* * Copyright 2018 Marshall Colville (mjc449@cornell.edu)
*
Licensed un... | [
"mjc449@cornell.edu"
] | mjc449@cornell.edu |
2dea5c5409953d7414e6f460f632bfe2c1078b45 | b0a32cc35ddbcdb7ed76fe884d5f9c9680e90f1d | /boa/cgi-bin/sqlite/add1.c | d495216d601896139e9203f724047b0b8c98b3cc | [
"MIT"
] | permissive | Evandoz/Embedded | 348312aecbab177c1ce77d8941c38387bdc133d5 | 571972032f797ad1a8ac22ce9461ade11e3c64d7 | refs/heads/master | 2020-03-27T04:37:42.770278 | 2018-08-24T07:06:39 | 2018-08-24T07:06:39 | 145,955,883 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,846 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "sqlite3.h"
int main()
{
sqlite3 *db;
int nrow = 0, ncolumn = 0;
char *zErrMsg = 0;
char sql[500];
int rc = 0;
char *data=NULL;
char name[20],type[20];
int price;
printf("Content-type: text/plain; charset=iso-8859-1\n\n... | [
"evandoz@outlook.com"
] | evandoz@outlook.com |
46c35575f4d80f08875d08d9620e6d705b5031c2 | 1e074e828ca4bd5e4ee239c81745b6b2b818a6c7 | /apv5sdk-v15/autelan/plc-homeplug/plc/SDRAMInfo.c | a5c033f5ab883f0acc7bf4eaed1be47be9555725 | [] | no_license | hades13/apv5sdk-v15 | 51698f727b17f0cc05cbfd0df6ffff3da31d5b6e | 56b8a22a93e026580ecc8b33d18267e4ace4e02a | refs/heads/master | 2020-03-18T11:34:29.809253 | 2016-05-03T10:45:27 | 2016-05-03T10:45:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,172 | c | /*====================================================================*
*
* Copyright (c) 2011 by Qualcomm Atheros.
*
* 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 perm... | [
"zhangsiyu@debian.suns"
] | zhangsiyu@debian.suns |
6c5bfb6b05c9157b708fa1b230555d429ca350f3 | 46b7aecc57ed71d890a5c0cd7687637039353afc | /infantry_master/1.13中期视屏程序/Init_ZS/USART_ZS.h | 1438c43c31a38d80f86442bf062bb8316086b93b | [] | no_license | zhangsheng6/rm | 6a29da52e2ecf0e61068ff9260a071c48baa8019 | e2febe21a3bc56f5b5fee7f378c98ce5de8c97ca | refs/heads/master | 2022-06-21T07:35:52.570273 | 2020-05-13T09:27:51 | 2020-05-13T09:27:51 | 263,582,704 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 150 | h | #ifndef _USART_ZS_H_
#define _USART_ZS_H_
#include "init.h"
void Device_Usart4_ENABLE_Init(u32 bound);
void USART6_Configuration(void);
#endif
| [
"zsingle6@gmail.com"
] | zsingle6@gmail.com |
a42ea806ea980593db2ca5b623fe1ac157ec16eb | e38c357a31a1905370a03c8bf1ec791b6b171ea8 | /programowanie-podstawowe/exam/Pin v1.0.c | 0f36566c8c1d0b5f11f59236641e9b7622f21947 | [
"MIT"
] | permissive | YaYanush/software-engineering | afeaaf8d68e7e2356a74614a7568e3085b9f0d3d | 30b5c3431a9034bf5850bf6a4992984027aeaed1 | refs/heads/master | 2023-04-13T19:16:46.535782 | 2021-05-05T19:39:47 | 2021-05-05T19:39:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 438 | c | #include<stdio.h>
#include<string.h>
int main(void) {
const char* pin = "mypin";
char try[50];
int iscorrect = 0;
while(!iscorrect) {
printf("Input pin: ");
scanf("%s", &try);
// printf("%s %s", pin, try);
if(strcmp(pin, try) == 0) {
printf("PIN correct\n")... | [
"konrad.pagacz@gmail.com"
] | konrad.pagacz@gmail.com |
e905d57656fbec46af35cf8c5f148b5fdba1d69f | 467c092d801984f9b1d0aa738d9c1ddd4b152ab7 | /iRacing_Dash_KL25Z/Generated_Code/Tx1.h | b3f2252d419c49a62ea06f9a7a85264005efe073 | [] | no_license | Marc-Oros/iRacing_Dash_micro | 9a0614208c0efaf9f1349f6eb127a5d4d81ff783 | 7fd83a9d8d9e71748c26f4140c49cc62eee71069 | refs/heads/master | 2020-04-14T13:02:17.741128 | 2019-01-25T14:29:04 | 2019-01-25T14:29:04 | 163,857,664 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,649 | h | /* ###################################################################
** This component module is generated by Processor Expert. Do not modify it.
** Filename : Tx1.h
** Project : projecteCotxe_Serial
** Processor : MKL25Z128VLK4
** Component : RingBuffer
** Version : Component 0... | [
"marc.oros@e-campus.uab.cat"
] | marc.oros@e-campus.uab.cat |
5c2db3ea85497e702b8f928d9b49bd95070162ff | dcb5666002a67e6eb331f7db67810c01a3bdc5a9 | /chapter 6/ex6.c | b0eb9ee47efaf7f830d2961911e23882f7ea8773 | [] | no_license | alexisc64/git__commands | ddd644344f81fa6a9b239ecda67c90b561a993f0 | ed51b52193ee2dfa9b2ad94348002ce31fb5afc0 | refs/heads/main | 2023-04-19T02:02:04.540007 | 2021-04-30T18:05:34 | 2021-04-30T18:05:34 | 360,295,005 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 507 | c | // Write a program to tell if a year is a leap year.
#include <stdio.h>
char line[100];
int year;
int isleap(int year)
{
int leap = 0;
if ((year % 4) == 0) {
leap = 1;
if ((year % 100) == 0 && (year % 400) != 0) {
leap = 0;
}
}
return leap;
}
int main()
{
printf("Enter year: ");
fgets(line, sizeo... | [
"2009020@upy.edu.mx"
] | 2009020@upy.edu.mx |
1e34689ffb1cb527ab4d8a0eb6437dcf7f74bd3f | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/FFmpeg/libavcodec/extr_vp8.c_vp7_read_mv_component.c | 0b8fe2c6490be24f2c82a3ab76f0a4c848d4b446 | [] | no_license | isabella232/AnghaBench | 7ba90823cf8c0dd25a803d1688500eec91d1cf4e | 9a5f60cdc907a0475090eef45e5be43392c25132 | refs/heads/master | 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 690 | c | #define NULL ((void*)0)
typedef unsigned long size_t; // Customize by platform.
typedef long intptr_t; typedef unsigned long uintptr_t;
typedef long scalar_t__; // Either arithmetic or pointer type.
/* By default, we understand bool (as a convenience). */
typedef int bool;
#define false 0
#define true 1
/* Forward d... | [
"brenocfg@gmail.com"
] | brenocfg@gmail.com |
0cfa807a9a134186bb88cd8d4e6eec0d5bc62dbc | a899fd1b9037ff946d0d406bf0289e06f5fd1047 | /jni/config.h | 74c18fce8fbead9b37e2c89ec5dd74cae582302d | [] | no_license | johnzhou2011/Android-hmac-sha1 | 506d1b27cc996cf8713a0f8a00045db95481e499 | b009c036e34929c996091a74adce0773936cdc21 | refs/heads/master | 2021-04-15T14:36:44.779519 | 2016-04-15T11:52:53 | 2016-04-15T11:52:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 746 | h | /****************************************************************************
****************************************************************************
***
*** This header was automatically generated from a Linux kernel header
*** of the same name, to make information necessary for userspace to
*** call i... | [
"kule.yang@icloud.com"
] | kule.yang@icloud.com |
08c10651507467045b214774f2ad2ce14e344393 | d963b739198cf98ff9c074a1fa5fa88603f402d0 | /numeric.c | 0161cbabfe1ccc29ece67c8345328c1509c24699 | [] | no_license | pappumani/merline | eafe434fe7f093cc257f816a037ba8b08c17f6ef | 0b5f668a2b4094b3f03fbd7a330a953826f36ebd | refs/heads/master | 2021-01-15T13:29:42.532848 | 2017-11-18T06:12:23 | 2017-11-18T06:12:23 | 99,675,781 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 224 | c | include <stdio.h>
include<string.h>
void main()
{
char str[20];
int dig=0,i=0;
printf("\nEnter any string : ");
gets(str);
while(str[i]!='\0')
{
if(str[i]>='0'&&str[i]<='9')
{
digits++;
}
printf("\nDigits =[ %d ]\n",dig);
}
| [
"noreply@github.com"
] | pappumani.noreply@github.com |
8c97baa8106531656c21b05c0a29024d9fefa105 | 73d028ed572a03645014cf72047bc71a70258f06 | /lib/libft/srcs/libft/ft_strstr.c | 2e35a6724568c29026b2a8f12d198ee5f0803313 | [] | no_license | martingarcialopez/miniRT | 6157dcefd98aa3a695bc08708a330196204f82a9 | bdbba76a27ab8879067dd51a88c63ce28f54a529 | refs/heads/master | 2021-03-02T12:24:37.083807 | 2021-01-22T10:30:26 | 2021-01-22T10:30:26 | 245,868,111 | 58 | 4 | null | null | null | null | UTF-8 | C | false | false | 1,263 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strstr.c :+: :+: :+: ... | [
"mgarcia-@e1r5p20.42.fr"
] | mgarcia-@e1r5p20.42.fr |
1544324d3e903022b8391d525fb48a1aa45abe13 | 4a54dd5a93bbb3f603a2875d5e6dcb3020fb52f2 | /custom/client-rfexe/src/network/packet/ZC_REQ_COUPLE.h | 4544524934893999885e94f68186449e1d891f81 | [] | no_license | Torashi1069/xenophase | 400ebed356cff6bfb735f9c03f10994aaad79f5e | c7bf89281c95a3c5cf909a14d0568eb940ad7449 | refs/heads/master | 2023-02-02T19:15:08.013577 | 2020-08-17T00:41:43 | 2020-08-17T00:41:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 799 | h | struct PROTO_ZC_REQ_COUPLE
{
short PacketType;
unsigned long AID;
unsigned long GID;
char name[24];
};
struct PACKET_ZC_REQ_COUPLE
{
/* this+ 0 */ short PacketType;
/* this+ 2 */ unsigned long AID;
/* this+ 6 */ unsigned long GID;
/* this+10 */ char name[24];
static Packet* ToProto(short PacketType, Packet*... | [
"50342848+Kokotewa@users.noreply.github.com"
] | 50342848+Kokotewa@users.noreply.github.com |
845cd741c7c1d203f36d4dc919d3cfb50e24e073 | e89335396788184cf0001bed999db6de421437cd | /vw_jni/com_indeed_vw_wrapper_learner_VWActionProbsLearner.h | ce8665e796f12c373308de2d900b38bf48a921c1 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | isabella232/vowpal-wabbit-java | 0ff860fc6f7dbe7521515ee1eba3388535b41abc | 3a9a92ac11a69d265656806e84bc9c05d138ef88 | refs/heads/master | 2023-01-09T12:35:36.950219 | 2019-06-20T21:24:51 | 2019-06-20T21:24:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | true | 992 | h | /* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class com_indeed_vw_wrapper_learner_VWActionProbsLearner */
#ifndef _Included_com_indeed_vw_wrapper_learner_VWActionProbsLearner
#define _Included_com_indeed_vw_wrapper_learner_VWActionProbsLearner
#ifdef __cplusplus
extern "C"
{
#end... | [
"artem@indeed.com"
] | artem@indeed.com |
68a2eab6788ac06aaf8573790bf8002b5fe340e0 | 144b940d83b78a393e574a6849bff57c051fb2d4 | /ruut.c | 6772e1992ec46740509c97b4f183be3391b06ed0 | [] | no_license | K6rts93/C | a356a6170ab2f02b8f513b6b7808c2f7dcda99e6 | 9c21d5353ad052e330cd62270bc1436825716199 | refs/heads/master | 2021-01-20T10:41:24.671046 | 2013-11-28T08:46:59 | 2013-11-28T08:46:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 185 | c | #include <stdio.h>
int main(int argc, char* argv [])
{
printf("\narv\truut\n");
int i,j;
for(i=1;i<=20;i++)
{
printf("%2d\t%3d\n",i,j=i*i);
}
return 0;
}
| [
"mattis.kivilatte.005@mail.ee"
] | mattis.kivilatte.005@mail.ee |
4d51e0a69ae5eb69a3df8bd6bdc432d588d65da1 | 004f7e9ff598886a3134f824f5052fb7f1391ead | /libft/ft_memcmp.c | e8da2aa3a601fec1d60ab2e15c5c8f55a9dbf5f2 | [] | no_license | mihailmoll/ft_ls | 2683d91813c08c82d2312f8e453cc49a37ce09ee | 87806dab6645d0df5025256634f4abef4d3760c3 | refs/heads/master | 2020-06-14T00:14:44.683687 | 2017-01-13T15:10:09 | 2017-01-13T15:10:09 | 75,540,396 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,231 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memcmp.c :+: :+: :+: ... | [
"mmihail@e1p82.chisinau.42.fr"
] | mmihail@e1p82.chisinau.42.fr |
d5aca4214ad4eecd05a26dcb364a9359b8f4f5df | 5ff54b2b7edd6df53825779a15518acbea632a6d | /Socket/WK_Thread.h | a1a3bf062bac51253e7ee7f0e2613c853280ae4a | [] | no_license | yisea123/socket | 060e5e589dd4d38f9726172d14ca5e8cd39e333e | 66817d04de107fb837457db16b8ce169b76ed7e3 | refs/heads/master | 2020-09-02T17:58:53.660474 | 2019-04-11T09:17:06 | 2019-04-11T09:17:06 | 219,275,303 | 1 | 0 | null | null | null | null | GB18030 | C | false | false | 787 | h | #pragma once
//自定义消息
#define WK_OPEN_UDP (WM_USER+1 )
#define WK_OPEN_TCPSERVER (WM_USER+2 )
#define WK_OPEN_TCPCLIENT (WM_USER+3 )
#define WK_SEND_DATA (WM_USER+4)
#define WK_CLOSE_SOCKET (WM_USER+5)
#define WK_ERR_RETURN (WM_USER+6)
#define WK_RECEIVED (WM_USER+7)
#define WK_TAR... | [
"1414772332@qq.com"
] | 1414772332@qq.com |
bc426efc9c4d15b90e50f71c191b508168e49ce2 | fdf87e4c7f71d84fc641ebb5ea62652a4c6f86f9 | /menu_functions.c | d4c9bec1bb7e0917d5b273dd8dc00c5f8f095b24 | [] | no_license | EmmanuelU/xmc-mod-menu | f685d2c7f427c964702fde68eb01774e34303ca1 | b54cb80c302ad44f999dc2ae511c5edd28f98f13 | refs/heads/master | 2020-05-18T16:28:07.077274 | 2015-02-23T01:05:52 | 2015-02-23T01:05:52 | 28,412,634 | 2 | 6 | null | null | null | null | UTF-8 | C | false | false | 286,551 | c | /**
Menu functions
Orig. by: Herr Muskelprotze
by: Emmanuel Utomi
**/
#define do_toggle(x) \
if(x) x=false;\
else x=true;\
reset_menu();
void draw_title(float x, float y, float width, float height, uint r, uint g, uint b, uint a, char *val){
#ifdef PC
if (!IS_FONT_LOADED(7))
{
LOAD_TEXT_FO... | [
"emmanuelutomi@gmail.com"
] | emmanuelutomi@gmail.com |
439651f0c684098d3087611e08bdca61740c0d27 | 54f352a242a8ad6ff5516703e91da61e08d9a9e6 | /Source Codes/AtCoder/arc045/A/2200028.c | 795ac50efb6f150aa58739b54ae99c1e89bd88bd | [] | no_license | Kawser-nerd/CLCDSA | 5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb | aee32551795763b54acb26856ab239370cac4e75 | refs/heads/master | 2022-02-09T11:08:56.588303 | 2022-01-26T18:53:40 | 2022-01-26T18:53:40 | 211,783,197 | 23 | 9 | null | null | null | null | WINDOWS-1250 | C | false | false | 812 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
int i;
char *S = (char *)malloc(sizeof(char) * 101);
gets(S);
if(S[0] == 'L'){
printf("<");
i = 5;
}
if(S[0] == 'R'){
printf(">");
i = 6;
}
if(S[0] == 'A'){
printf("A");
i = 8;
}
for(i = i; S[i - 1] != '\0'... | [
"kwnafi@yahoo.com"
] | kwnafi@yahoo.com |
47deb8e8a618a7e82e7856b8e8faa1745ba48e1e | 0f6e91db69aafaf0785e6626e64657ece6a69343 | /Sumulator/Classes/Native/mscorlib_System_AppDomainMethodDeclarations.h | 3506cb65ffeeaa1a0cf2403c6a8f5a73ff4c1980 | [] | no_license | fullcorder/UnityDemo-Project-For-Jenkins | 35b373bed87975b3a72de29b3b65dbe187cbcd75 | f1a2741b1feecc5735b5db9503bcc23bcf104641 | refs/heads/master | 2021-01-10T11:09:28.351327 | 2015-11-01T06:00:08 | 2015-11-01T06:00:08 | 45,330,008 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 4,090 | h | #pragma once
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
// System.AppDomain
struct AppDomain_t537;
// System.UnhandledExceptionEventHandler
struct UnhandledExceptionEventHandler_t538;
// System.String
struct String_t;
// System.Reflection.Assembly
struct Assembly_... | [
"kobaring@icloud.com"
] | kobaring@icloud.com |
844c9453438814dbdcb3992b27f9ae1b17953fa7 | 8b9c170ab2d4d6a62231b1f839531ba9c6af30b3 | /lab8/priorityQueue.c | 8b33929ed91b7eecc2abb33927c4bef262d6f911 | [] | no_license | shreyasrikrishna/DAA-LAB | d6275313f9c7a978204b86bfc50a76461f9e5c47 | e136789e98aa91090ae46c84ec1dd2825d15f04c | refs/heads/main | 2023-06-24T02:30:02.356968 | 2021-07-28T08:55:06 | 2021-07-28T08:55:06 | 390,247,810 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,810 | c | #include<stdio.h>
#include<stdlib.h>
void heapify(int arr[],int n){
int i,v,j;
int heap=0,k=0;
for(i=n/2;i>=1;i--){
k=i;
v=arr[i];
while(!heap&&2*k<n){
j=2*k;
if(arr[j+1]>arr[j])
j++;
if(v>arr[j]){
... | [
"noreply@github.com"
] | shreyasrikrishna.noreply@github.com |
dee1daa2552a7652d460f26af5eff34a3f73a1ae | 803bc1cdc2e03f26369db8281b2dd9aa2ceca173 | /src/compat.h | 0d8aad090d0da136bf2681a5757e382076f789cd | [
"MIT"
] | permissive | bpg-project/BPGCoin | 692a6b5137869817c811aa3845ee2374153cfa7e | b3942d07840261b67d6d3fbea99496003bf300d8 | refs/heads/master | 2020-03-20T03:55:57.055868 | 2018-06-13T07:34:49 | 2018-06-13T07:34:49 | 137,164,565 | 0 | 7 | null | null | null | null | UTF-8 | C | false | false | 2,484 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_COMPAT_H
#define BITCOIN_COMPAT_H
#if defined(HAVE_CONFIG_H)
#in... | [
"bpgproject2018@gmail.com"
] | bpgproject2018@gmail.com |
fc9c611213de0954e8979faeec874e028af5f048 | fef8ad4d8177bb545ce618bfb582e9e661a8f4f9 | /walker_install/include/servo_ctrl/ubteccom.h | 796dc333d41894ca919da33ec66c1d8bc5ab7ab1 | [] | no_license | DrawZeroPoint/CURI-Walker | 6390349694ff9d82fddadd062e1c5ddf826750c5 | 5030b2504aaa168b029dea3646bc207815fe30f2 | refs/heads/master | 2023-01-04T15:56:50.827343 | 2020-07-09T23:40:24 | 2020-07-09T23:40:24 | 269,505,155 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,281 | h | #ifndef __UBTECCOM_H__
#define __UBTECCOM_H__
#include <stdint.h>
#include <time.h>
#include <pthread.h>
#define MAX_SERVO_NUM 12
#define MAX_FT_NUM 4
#define UBTECH_MOTOR_VERS_MAJ 0 /* major version */
#define UBTECH_MOTOR_VERS_MIN 1 /* minor version */
#define U... | [
"zhipengdongneu@gmail.com"
] | zhipengdongneu@gmail.com |
d7e8ae74ee6fd5a7e7ef27c434ca12688184168f | fb454f9481503a1664a6fa18a12fd951e5b0bf11 | /srcs/libft/ft_toupper.c | fa66e495060b88eb874d6b9c82e50bdfd989561a | [] | no_license | Youssef2id/Fillit | 53af8e2a67c52465a4006f5dbcb53e3882177c52 | fa200592db8fc8d889a5df8885f3d2506e8b09f7 | refs/heads/master | 2020-04-10T07:32:05.322497 | 2018-12-08T00:09:53 | 2018-12-08T00:09:53 | 160,882,863 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,009 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_toupper.c :+: :+: :+: ... | [
"yidabdes@e1r6p13.1337.ma"
] | yidabdes@e1r6p13.1337.ma |
90b2deaea881b6442f9f65ce99d5986a1cbdf956 | db9620ff73ab68aac27a14f3413a9234ebf60922 | /4th sem/4th sem lab/ada lab/bpraph.c | 03537a05084bcfad84f0e92a538a836f3df52821 | [] | no_license | shaman-cmd/C-S_Lab | 06d8ddcd1093dd07ae6e97306a89b515eca98ac6 | 42c39789b0a6d8d2c744c2974cbfb22cfd5659f5 | refs/heads/main | 2023-05-29T23:39:36.616799 | 2021-06-10T09:07:43 | 2021-06-10T09:07:43 | 375,315,601 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,626 | c | #include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<string.h>
int cnt;
struct Graph{
char* v;
int* E;
};
typedef struct Graph* G;
struct que{
int a[100];
int l;
int r;
};
struct que QUE;
int *mark;
void insert(struct que*q,int i){
if(q->r==99){printf("que is full");return;}
q->a[++q->r]=i;
}
int delete(st... | [
"81159028+shaman-cmd@users.noreply.github.com"
] | 81159028+shaman-cmd@users.noreply.github.com |
7a17d18ef5a930838f6e688b97e1ad4e24aa196f | 6d848651ae671be98550661b95f6930115e2cbca | /51dai_ma/changs.c | b76643ee6bca7bd86ceea4fc72cc60186f32c928 | [] | no_license | 2833905982/32_project | 8818f6cea15e56e11b41bd44668b064f5334c5f5 | eabce3bf5dce550952ab6bb02fb12b7034a23691 | refs/heads/master | 2020-08-29T20:55:12.847457 | 2020-02-27T00:22:23 | 2020-02-27T00:22:23 | 218,163,563 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 204 | c | #include <reg52.h>
sbit LED1 = P0^0;
sbit LED2 = P0^1;
sbit LED3 = P0^2;
sbit LED4 = P0^3;
sbit LED5 = P0^4;
sbit LED6 = P0^5;
sbit LED7 = P0^6;
sbit LED8 = P0^7;
main()
{
while(1)
{
P0 = 0xFF;
}
} | [
"44614119+2833905982@users.noreply.github.com"
] | 44614119+2833905982@users.noreply.github.com |
3d9be289d582e3bc39c768ce057f81a4417def5a | 7f5f597a791b4c9533bb26fce6784a7ef398036b | /garbage.c | bb919a3eb6b3a7dd090e6035e69cfcb915ec369d | [] | no_license | adeceptikon/c_progs | c32f6330ccb1b412ef5712563471e80f20c872df | 0d89d4dbac68db4573ceba2e63511ea6edd170fc | refs/heads/master | 2023-08-31T09:22:07.957285 | 2021-10-19T15:51:21 | 2021-10-19T15:51:21 | 418,991,624 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 148 | c | #include<stdio.h>
int main(){
int x;
char s[] = "kdjfs klj sadlkjf jsd;lkjieroieimie mimicmklcsikclk.,m.,xxzicvi";
printf("%s" , s);
}
| [
"adeceptikon@gmail.com"
] | adeceptikon@gmail.com |
0670edf2b3f32d4dfdff23ade3a7997d8f0e4b47 | 77c19881e3d9b96f7f3049ae39f5cbd2a79c513e | /towers_of_hanoi.c | 0bdeb0d1a4f794698d6a592f8b6a3e103cc3b350 | [] | no_license | josemarjobs/c_exercises | 4a7475d33b74f95393893cccdebc81dccce03e68 | 0155d43506f1e27a8b0664169eaea050aa51bbdc | refs/heads/master | 2021-01-01T05:12:40.785562 | 2016-05-09T09:19:28 | 2016-05-09T09:19:28 | 57,364,130 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,992 | c | /*********************************************************************
************************* Prologue ***********************************
* University of California Extension, Santa Cruz
* Advanced C Programming
* Instructor: Rajainder A. Yeldandi
* Author: Josemar da Costa Magalhaes
* Assignment Number: 10
* Topic... | [
"josemarmagalhaes@hotmail.com"
] | josemarmagalhaes@hotmail.com |
30ad4fe5dee4e7c77dc46ebfdc8c465ca71e6d20 | eeed096d83d98b266b95c59a5a2485e9dd1453d6 | /isoqlog/main.c | ca0ed23dd2ae3cdf95109a3360c2dfc5cc7f7c7c | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | jorge-leon/Isoqlog | b7ea87da5d8f391de75f0968f83e6bc2582ce82a | 6fcc5a9c409d99a2d7ece8fa941504485b55b33a | refs/heads/master | 2020-12-02T05:10:51.502470 | 2011-12-31T13:09:14 | 2011-12-31T13:09:14 | 230,900,356 | 0 | 0 | NOASSERTION | 2019-12-30T11:03:09 | 2019-12-30T11:03:08 | null | UTF-8 | C | false | false | 1,443 | c | #include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include "Data.h"
#include "Parser.h"
#include "Dir.h"
#include "Html.h"
#include "LangCfg.h"
#include "loadconfig.h"
#include "Store.h"
extern char langfile[VALSIZE];
extern char logtype[VALSIZE];
extern char logstore[VALSIZE];
int main(int argc, char *... | [
"emre@enderunix.org"
] | emre@enderunix.org |
73bebac48e3b3137a5938df986da9d45f08077d6 | f35e85805cb6b3ae130edb2ac82b13b7be0c113e | /include/parallel.h | 4c6f9ece1fe9114a8b67512c84e739353e70e673 | [] | no_license | ajakobs/iPic3D | e4c2689068632f22931ab4b8824376dd5ed40bea | 72bdd409578da017c4c3a13ec3d5419409ae1301 | refs/heads/master | 2020-04-14T20:22:34.662842 | 2014-12-15T12:33:34 | 2014-12-15T12:33:34 | 28,035,578 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 426 | h | #ifndef _parallel_h_
#define _parallel_h_
/*********************************
* General header for parallelism
* (MPI, OpenMP, and SIMD)
*********************************/
#include "MPIdata.h"
#include "ompdefs.h"
/*! used to restrict output to a single thread of a single process */
//inline bool is_main_master_thr... | [
"a.jakobs@fz-juelich.com"
] | a.jakobs@fz-juelich.com |
56435825373bc12ea7c35c8033ad01c4cb7c2f6a | 4430e8a1a0caffa2801098f31a0d65b549829620 | /MP-BusSpd2i/jni/busspdmp2i.c | a539a7343cef2713bec722942ac43c51ca0bf672 | [] | no_license | liuyq/benchmarks | 8b26fcc8024f557663057bd038d2e982a90eef99 | 2d437432aedafc0eed7e96a5d86d7c0243804d1b | refs/heads/master | 2021-01-20T07:27:33.132347 | 2017-08-27T08:22:32 | 2017-08-27T08:22:32 | 101,539,205 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 24,626 | c | /*
~/workspace/mp-busspd/jni$ ~/Eclipse/android-ndk-r7/ndk-build
* BusSpeed
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <inttypes.h>
#include <stdint.h>
#include <time.h>
#include <jni.h>
#include <pthread.h>
pthread_t tid[100];
... | [
"yongqin.liu@linaro.org"
] | yongqin.liu@linaro.org |
fecb9d89faa6de98a30bca1f64227bc7e7006bbe | 09c1fc8864240d1777472d536618604ddbcb512c | /Week1/addition.c | 2a0da18101b34f78890b31d8694555c25e8207d4 | [] | no_license | kaitoyokohamaa/cs50 | 4ff44e21fffe8b8bc34740a1f24fd200aa593788 | 7d653cb208777936da088b70d2ff987265e9f15f | refs/heads/master | 2023-08-28T21:17:13.222719 | 2021-10-11T07:40:59 | 2021-10-11T07:40:59 | 336,772,383 | 1 | 0 | null | 2021-07-25T08:14:02 | 2021-02-07T11:42:22 | C | UTF-8 | C | false | false | 145 | c | #include <cs50.h>
#include <stdio.h>
int main(void)
{
long x = get_long("x: ");
long y = get_long("y: ");
printf("%li\n", x + y );
} | [
"s1A121700885@toyo.jp"
] | s1A121700885@toyo.jp |
d0040abb63286194661e36e353e720589d24cbbe | e7b80d7fd9fcad8dbf8d1ef81cdb55fe45eb4ac1 | /3.5.c | 5ba847cefb78c74065740ec1444133e396b1f90e | [] | no_license | MZotov/Rep1 | 56a3520c33d6afcb28a23542fec28efc35bfc121 | ea6ebf649161fb6c1ba39a0eafda1b3af71e9ff0 | refs/heads/master | 2021-05-16T08:02:00.923787 | 2017-10-31T18:07:31 | 2017-10-31T18:07:31 | 103,970,661 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 327 | c | #include <stdio.h>
#include <stdlib.h>
int main()
{
unsigned long int n, i, res;
scanf("%lu", &n);
res = 1;
for (i = 2; i < n; i++)
if (n % i == 0)
{
res = 2;
break;
}
if (res == 1) printf("YES");
else printf("NO");
return ... | [
"noreply@github.com"
] | MZotov.noreply@github.com |
d24699c2e60c3814b53e8a30bcccfe8d594c9409 | c7f167d81719c1659db28d0f3dcdcfd14c6b3623 | /mirrorapi/node_modules/rpi-ws281x-native/src/rpi_ws281x/ws2811.c | 509422d1e7273787dd0b6daa8eeabad7fff52bc8 | [
"BSD-2-Clause",
"MIT"
] | permissive | blip456/AudioVisuals | 8b54222287b1a82d4038225daa22029f76cfdc54 | 9877fb2133f13d95fcad6761c09cfa6391808101 | refs/heads/master | 2021-01-23T04:09:34.940823 | 2015-01-18T23:03:53 | 2015-01-18T23:03:53 | 27,541,185 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 19,576 | c | /*
* ws2811.c
*
* Copyright (c) 2014 Jeremy Garff <jer @ jers.net>
*
* 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 copy... | [
"yoranbroodcooren@gmail.com"
] | yoranbroodcooren@gmail.com |
0562ee9e593aaea59d6811de27109dfd31424a69 | fea30dd87192ee7a7960ab249f1dc20d153477f3 | /lib/CrimePreventionSensor/src/echonet_main.c | e86ebbf5d8a4a30cf8e71f4c37a4a6bc4228dbb0 | [] | no_license | jiang-jy/TECS | 5a2b8c840ef522f0c3f0d06759d5b6ca38e18314 | b2f9243b5afc8af94345de95b3aa29cdb0f8bf5b | refs/heads/master | 2023-05-22T15:59:35.269256 | 2021-06-11T02:29:04 | 2021-06-11T02:29:04 | 321,966,462 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,446 | c | #include <kernel.h>
#include <t_syslog.h>
#include <t_stdlib.h>
#include <sil.h>
#include <string.h>
#include "syssvc/serial.h"
#include "syssvc/syslog.h"
#include "kernel_cfg.h"
#include "echonet_main.h"
#include "echonet_cfg.h"
#include "target_kernel_impl.h"
#include "gpio_api.h"
#include "rtc_api.h"
#include "tECNL... | [
"bird.man.jiang@gmail.com"
] | bird.man.jiang@gmail.com |
2db7f127567e421c57d774dd5ca83ba05851fb12 | dc8577728f827997af3ff7586715443ab0004895 | /ompi/mca/topo/treematch/treematch/tm_verbose.h | eafb0942f4eb41c5fcbde9e6907d60aaf1158202 | [
"BSD-3-Clause-Open-MPI",
"LicenseRef-scancode-cecill-b-en",
"BSD-2-Clause"
] | permissive | HewlettPackard/zhpe-ompi | fbcfd5c37c82f399182b47067b82098acba93f07 | 9436199b48423a619889cc11a050ffeef03c2934 | refs/heads/zhpe-fsm-poc | 2023-09-04T05:01:28.726229 | 2018-03-10T01:09:41 | 2018-03-10T01:09:41 | 116,433,252 | 1 | 11 | NOASSERTION | 2019-12-18T18:19:03 | 2018-01-05T22:29:30 | C | UTF-8 | C | false | false | 207 | h | #define NONE 0
#define CRITICAL 1
#define ERROR 2
#define WARNING 3
#define INFO 4
#define DEBUG 5
void set_verbose_level(unsigned int level);
unsigned int get_verbose_level(void);
| [
"rhc@open-mpi.org"
] | rhc@open-mpi.org |
bcd7604e7c1abf7719065873d89d5a365b9b9f82 | e8f916355aea269a063b37a89143c50b41633be5 | /rootfs-tools/udc_d/udc_d.c | 633c1a9c39167c9790fc293ece4cf0dc23a628f1 | [] | no_license | fxn-jbd-open/patch-for-ili | 1645672ddef04cb604794bacd9fe313106871b9c | af9c4c7d21014f627e884e5bf6ecef6ddb458143 | refs/heads/master | 2020-04-11T01:32:11.574714 | 2017-05-12T00:31:23 | 2017-05-12T00:31:23 | 68,159,781 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,275 | c | /*
* A simple program to get key event fired from rk29-keypad,
* which is registered by drivers/input/keyboard/rk_keys.c.
*/
#include <stdio.h>
#include <stdlib.h>
#include <linux/input.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
/*
* Us... | [
"hchang.hc.lin@foxconn.com"
] | hchang.hc.lin@foxconn.com |
00b09c4e4221e7a5c47d6b86cce75c7cd55353d3 | 38b1949ad05cc8449eef8e4c6fef1f63f79f5b23 | /cpp_solution/extern_libs/postgresql/include/server/catalog/pg_control.h | 99d0a31bb7e5e29bebd10f44bf76548ca53aea74 | [
"MIT",
"Zlib"
] | permissive | linjoehan/SimpleSalesProcessor | eaa526e10c831c4e2b22d2bfd0b96fed5e6e88b1 | 5784e97a7b0d60bdd4875663a1ab1988d8178587 | refs/heads/master | 2023-04-20T02:57:27.991110 | 2021-04-23T12:16:00 | 2021-04-23T12:16:00 | 363,064,846 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,088 | h | /*-------------------------------------------------------------------------
*
* pg_control.h
* The system control file "pg_control" is not a heap relation.
* However, we define it here so that the format is documented.
*
*
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
* Portions Co... | [
"linjoehan@yahoo.com"
] | linjoehan@yahoo.com |
32eb33aea357ba12d0248be9bbe723b12f62a07a | a0c4ed3070ddff4503acf0593e4722140ea68026 | /source/UTILS/NTBACKUP/SRC/DBLKSIZE.C | 9eeea0efc69fc7ddbc0f1d35e6d3fe92e9487e10 | [] | no_license | cjacker/windows.xp.whistler | a88e464c820fbfafa64fbc66c7f359bbc43038d7 | 9f43e5fef59b44e47ba1da8c2b4197f8be4d4bc8 | refs/heads/master | 2022-12-10T06:47:33.086704 | 2020-09-19T15:06:48 | 2020-09-19T15:06:48 | 299,932,617 | 0 | 1 | null | 2020-09-30T13:43:42 | 2020-09-30T13:43:41 | null | UTF-8 | C | false | false | 1,810 | c | /**
Copyright(c) Maynard Electronics, Inc. 1984-89
Name: dblksize.c
Date Updated: $./FDT$ $./FTM$
Description: This file contains code to determine the size of a DBLK
$Log: T:/LOGFILES/DBLKSIZE.C_V $
Rev 1.3 26 Oct 1993 21:07:16 GREGG
Got rid of problematic VCB actual size calc... | [
"71558585+window-chicken@users.noreply.github.com"
] | 71558585+window-chicken@users.noreply.github.com |
2bf0997a89c75bb8d2dc0ffac07c6ac22c8a84f0 | bf7afe9331237604fa3e20477fc8370e998cc89a | /MyDrivesMac/MyDrivesMac/socket.c | abe817faea345133f942ad73cea2b9f903c80b1e | [] | no_license | CobaCitizen/MyDrivesMac | b431e318a020aec5fff16aa478169e25188bf798 | 436953cfbd5ffc133b0270163d511383a1b1f51d | refs/heads/master | 2020-06-06T11:20:41.268077 | 2015-07-17T17:30:40 | 2015-07-17T17:30:40 | 38,610,526 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,083 | c | //
// socket.c
// MyDrivesMac
//
// Created by Vasyl Bukshovan on 15/07/15.
// Copyright (c) 2015 cobasoft. All rights reserved.
//
//#include <stdio.h>
//#include <stdlib.h>
#include <netdb.h>
#include <netinet/in.h>
#include <string.h>
//#include <malloc/malloc.h>
#include "socket.h"
void*start_server(void*);
v... | [
"jonentony@mail.ru"
] | jonentony@mail.ru |
28e9758b4a78d11edb2bd7a70817bb01abb38348 | 8ca58b858b8022aadab0167eb2d57d380ffd5be2 | /src/vmobjects/OOObject.h | 0de063bdacce52f88fe5c24859a27c0ffbb07849 | [
"MIT"
] | permissive | smarr/CSOM | 3056dc6a5e13876bdda66cf063f6a76973556b3e | 0d8b5129f3f9c25835edfa79503680e264871709 | refs/heads/master | 2021-07-23T05:55:37.467434 | 2021-04-26T09:54:55 | 2021-04-26T09:54:55 | 13,049,346 | 12 | 3 | MIT | 2017-12-14T18:38:08 | 2013-09-23T22:58:38 | C | UTF-8 | C | false | false | 4,442 | h | #ifndef OOOBJECT_H_
#define OOOBJECT_H_
/*
* $Id: OOObject.h 227 2008-04-21 15:21:14Z michael.haupt $
*
Copyright (c) 2007 Michael Haupt, Tobias Pape
Software Architecture Group, Hasso Plattner Institute, Potsdam, Germany
http://www.hpi.uni-potsdam.de/swa/
Permission is hereby granted, free of charge, to any person... | [
"git@stefan-marr.de"
] | git@stefan-marr.de |
eaf8ae1ab7f3706447f82338d4bf65862b31c478 | 940207b3012dc4aa11473b79cb0822aafea21ffa | /program/csmith-gutshall/csmith-gutshall.c | 6e8d901055507e842bc2852111b59769d2828e60 | [] | no_license | clappis/ck-benchmarks | b9f76a66a155605974e87172e07ee9ebd0586398 | cdfcd55bc80c1db3ed504169b020e6c240009d4e | refs/heads/master | 2020-05-24T18:59:00.269534 | 2019-10-18T14:10:10 | 2019-10-18T14:10:10 | 187,406,438 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 251,415 | c | /*
* This is a RANDOMLY GENERATED PROGRAM.
*
* Generator: csmith 2.3.0
* Git version: 30dccd7
* Options: (none)
* Seed: 727367660
*/
#include "csmith.h"
static long __undefined;
/* --- Struct/Union Declarations --- */
struct S0 {
unsigned f0 : 4;
const signed f1 : 9;
signed f2 : 7;
const v... | [
"alanmeloclappis@gmail.com"
] | alanmeloclappis@gmail.com |
7b5c030edb4e57818e574430762cc8bd589e8dd9 | f77a1f9d4a860dfd5154666dc4117e24627d835d | /gecko_sdk_suite/v2.4/platform/Device/SiliconLabs/EFM32GG11B/Include/efm32gg11b840f1024gl192.h | fb0376f8014d6874193d79e1443a019e5b5535e2 | [] | no_license | eosnewyork/gecko_sdk_suite | 9e93da499173edede02c3a986bfb233cf7b528e2 | 9678065284fc0faa89fe8206d51dcde5dcf632c1 | refs/heads/master | 2020-05-18T02:36:02.504381 | 2019-04-29T15:56:40 | 2019-04-29T15:56:40 | 184,101,402 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 201,083 | h | /**************************************************************************//**
* @file efm32gg11b840f1024gl192.h
* @brief CMSIS Cortex-M Peripheral Access Layer Header File
* for EFM32GG11B840F1024GL192
* @version 5.6.0
******************************************************************************
* # Lic... | [
"warrick@eosnewyork.io"
] | warrick@eosnewyork.io |
083c613dd7b022dc83be2fff2ee12851542f80d7 | a42eed13ff70836abc446b14e7a206488a15238e | /TP2/exo1_1.c | b4c9617c91df862c4410b0179ea07c203a8327f5 | [] | no_license | abdelhak2406/TP_SYSTEME_SII | 7a7f337eb395cc8412fd6d185a830d40ba6a472c | e4b49a5a5a9db23ea0c07682e1401a0ca595eb0e | refs/heads/master | 2023-04-08T08:45:31.430360 | 2021-04-05T19:23:49 | 2021-04-05T19:23:49 | 354,947,672 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 967 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
long compteur[3];
/* fonction executee par chaque thread */
void *fonc_thread(void *k)
{
long j;
j = (long)k;
printf("Thread numero %ld :mon tid est %ld\n", j, pthread_self());
for (;;)
compteur[j]++;
}
int main(... | [
"abdelhak24062@gmail.com"
] | abdelhak24062@gmail.com |
34de31b90cfeb8ed440661c7422a8aa18d905663 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/fs/orangefs/extr_dir.c_orangefs_dir_iterate.c | 669b0a0491ea53c95430ec999af092ee5a66af53 | [] | no_license | isabella232/AnghaBench | 7ba90823cf8c0dd25a803d1688500eec91d1cf4e | 9a5f60cdc907a0475090eef45e5be43392c25132 | refs/heads/master | 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,604 | c | #define NULL ((void*)0)
typedef unsigned long size_t; // Customize by platform.
typedef long intptr_t; typedef unsigned long uintptr_t;
typedef long scalar_t__; // Either arithmetic or pointer type.
/* By default, we understand bool (as a convenience). */
typedef int bool;
#define false 0
#define true 1
/* Forward d... | [
"brenocfg@gmail.com"
] | brenocfg@gmail.com |
71f9a279ad62a49888c1eb007c2d9068ed9d0c25 | b38ae10e095ca5a73f47d45c80943f24265fdd1f | /c/sin.c | 1e5d618a6173ea267ed638d8d2062b5c61252973 | [] | no_license | sarathmlp/archives | 7b88692de001ddf16e6370089443feb2499eb0b2 | 7016fabdb4a403f4c6be312ad16bb0b206498758 | refs/heads/master | 2023-01-10T02:44:26.221193 | 2017-04-20T06:50:16 | 2017-04-20T06:50:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 492 | c | #include<stdio.h>
#include<string.h>
void main()
{
char c[15], count;
int i, n, asc;
printf("Enter the string: \n");
gets(c);
for(asc==97;asc<=122;asc++)
{
n=0;
count=0;
for(i=0;c[i]!=NULL;i++)
{
if(asc==c[i])
{
n++; //... | [
"sarathmlp@gmail.com"
] | sarathmlp@gmail.com |
636e2ab5064e9923806955f807b0d9ec75aaf84f | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/git/extr_editor.c_launch_editor.c | d14d9ddf0ba431b4ff63b597168cbd69f934d3a7 | [] | no_license | isabella232/AnghaBench | 7ba90823cf8c0dd25a803d1688500eec91d1cf4e | 9a5f60cdc907a0475090eef45e5be43392c25132 | refs/heads/master | 2023-04-20T09:05:33.024569 | 2021-05-07T18:36:26 | 2021-05-07T18:36:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 711 | c | #define NULL ((void*)0)
typedef unsigned long size_t; // Customize by platform.
typedef long intptr_t; typedef unsigned long uintptr_t;
typedef long scalar_t__; // Either arithmetic or pointer type.
/* By default, we understand bool (as a convenience). */
typedef int bool;
#define false 0
#define true 1
/* Forward d... | [
"brenocfg@gmail.com"
] | brenocfg@gmail.com |
b357b2af7efcafa89d947fa64054ac49b7edf3c7 | 739323a885b63b861f82fb5b348fafb63abf9423 | /v2.7/platform/Device/SiliconLabs/BGM21/Include/bgm21_dpll.h | c93cc8d0096ea297f286a2c9d7075168f9bdf5f7 | [] | no_license | dimkas/gecko_sdk_suite | d88b32f911b1f6d3a83d4d66067cb643ad1b5492 | 50920d1bc35987195408fca332cc53867cb96a83 | refs/heads/master | 2022-03-27T23:31:53.644980 | 2020-01-14T10:45:13 | 2020-01-14T10:45:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 22,521 | h | /**************************************************************************//**
* @file
* @brief BGM21 DPLL register and bit field definitions
******************************************************************************
* # License
* <b>Copyright 2019 Silicon Laboratories, Inc. www.silabs.com</b>
**************... | [
"bdrr77@gmail.com"
] | bdrr77@gmail.com |
34c86263787b70c52375a04ae235cd45838e6a03 | 45ec72da7e803ca2f923a68d4025b4d29929afd5 | /src/someSnappyHexMesh/meshRefinement/meshRefinementBaffles.C | 48a0e744acc7b373fd547f6bf9a2614b68ba4bd6 | [] | no_license | venugopalansgr/OpenFOAM | 7b1d73516001bea159835388449b2438bfa97702 | 1d60b8bfa40abf6eaf5f19f59a99465448faf991 | refs/heads/master | 2020-12-25T17:35:35.247780 | 2020-02-10T08:55:58 | 2020-02-10T08:55:58 | 29,425,434 | 5 | 5 | null | null | null | null | UTF-8 | C | false | false | 140,492 | c | /*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2004-2011, 2015-2019 OpenCFD Ltd.
\\/ M anipulation |
----... | [
"noreply@github.com"
] | venugopalansgr.noreply@github.com |
eb41234934c49bb21640053c0fd25ab64225efda | 062bb7ebaa2e8a3f5c57ebc7335031bd3a51178f | /Carthage/Checkouts/couchbase-lite-ios/vendor/CBForest/vendor/forestdb/src/arch.h | 89b35febf58bfc9c1b8bddd2941403f840acab94 | [
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | rozd/CouchbaseLiteViewer | e0ce09c364b8fb59f7554e5a700e9608d55c5171 | 23da8741bd6f02dd40c815ad1d416bc8f59bdea5 | refs/heads/master | 2021-05-03T20:59:37.991421 | 2016-10-22T08:45:44 | 2016-10-22T08:45:44 | 71,466,575 | 1 | 0 | null | 2016-10-20T13:35:11 | 2016-10-20T13:35:10 | null | UTF-8 | C | false | false | 22,240 | h | /* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* Copyright 2010 Couchbase, Inc
*
* 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
*
* h... | [
"paul.dziwoki@gmail.com"
] | paul.dziwoki@gmail.com |
0bf935749c1329b43f4b593cb275724f04a6890a | 39244e86f00564f522f3edea701d44ae42213dec | /lmdb-sys/lmdb/libraries/liblmdb/mdb_dump.c | 667fcbe47621e087b711c277758c43b2da60fdb5 | [
"Apache-2.0",
"OLDAP-2.8"
] | permissive | GaiaWorld/lmdb-rs | 2a7d5e2b34ceae997517bc9e54c9cd4046967ce1 | 64818ed08f8f6307bf870fc9e01baa27e3e680f0 | refs/heads/master | 2020-04-07T15:39:18.701387 | 2019-02-23T09:37:13 | 2019-02-23T09:37:13 | 158,494,757 | 0 | 0 | null | 2018-11-21T05:19:58 | 2018-11-21T05:19:57 | null | UTF-8 | C | false | false | 6,280 | c | /* mdb_dump.c - memory-mapped database dump tool */
/*
* Copyright 2011-2017 Howard Chu, Symas Corp.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is avai... | [
"jayphbee@163.com"
] | jayphbee@163.com |
472f4ede79c3519c30df72c9fd7aaf955b5c5baa | 95f27a266ee24bf99028e45d440220b3d0bca524 | /mpu6050/libi2c/src/i2c_master.h | e738684ae262fcff147a6afc4a61f42f24ebbeb4 | [] | no_license | YChuan1115/pi-driver | 0a824bbd4984cdc374b322896573c5dcd132b964 | 4bebdf200aa4d907301f835aa01db9ee8a287955 | refs/heads/master | 2020-05-17T14:03:49.379614 | 2016-11-01T05:17:27 | 2016-11-01T05:17:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 907 | h | #ifndef I2C_MASTER_H
#define I2C_MASTER_H
#include<stdint.h>
#include<pthread.h>
struct i2c_device{
char name[32];
void * private_data;
uint8_t address;
int (*probe)(struct i2c_device *);
int (*get)(struct i2c_device *,uint8_t reg ,uint8_t *buff, uint8_t len);
int (*set)(struct i2c_device *,uint8_t reg ,uint8_t... | [
"robot@ittraining.com.tw"
] | robot@ittraining.com.tw |
7e5843e30647dfd1e2e7d35d37e12b0628671eb9 | e46b909cdf0361f6c336f532507573c2f592cdf4 | /contrib/libs/cxxsupp/openmp/thirdparty/ittnotify/ittnotify_static.c | 622a8592a6fae8e28409ee5289971e5e5a05cc12 | [
"Apache-2.0"
] | permissive | exprmntr/test | d25b50881089640e8d94bc6817e9194fda452e85 | 170138c9ab62756f75882d59fb87447fc8b0f524 | refs/heads/master | 2022-11-01T16:47:25.276943 | 2018-03-31T20:56:25 | 2018-03-31T20:56:25 | 95,452,782 | 0 | 3 | Apache-2.0 | 2022-10-30T22:45:27 | 2017-06-26T14:04:21 | C++ | UTF-8 | C | false | false | 40,242 | c |
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.txt for details.
//
//===---------------------------------------... | [
"exprmntr@yandex-team.ru"
] | exprmntr@yandex-team.ru |
8659399e341df941356aa7027c9c8e80b138d6a8 | 2bed6daa750b590cbf2b81fc429add0145d36c7d | /DUMP/BP_MP7_Sight_classes.h | c92bf071d992df0f281b7019f2be10a1e9cc8e69 | [] | no_license | xkp95175333/Scavenger-Win64-Shipping-ok | 31cdc2835c75c698b179e7a523f99359b3a062f0 | b834c2b35852590c5d199fadb4cc58af4c56f72d | refs/heads/main | 2023-06-12T00:47:56.743429 | 2021-07-05T19:26:35 | 2021-07-05T19:26:35 | 383,244,886 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 198 | h | // BlueprintGeneratedClass BP_MP7_Sight.BP_MP7_Sight_C
// Size: 0x400 (Inherited: 0x3f8)
struct ABP_MP7_Sight_C : ABP_Sight_Base_C {
struct USkeletalMeshComponent* SK_MP7_Sight; // 0x3f8(0x08)
};
| [
"68745798+xkp95175333@users.noreply.github.com"
] | 68745798+xkp95175333@users.noreply.github.com |
170ea4994351bb9e9e9e6ce0acc669e015a2e571 | 9275a157ea51ed565182bb99b97d8666c9a1d94e | /src/random.c | d0ceb3199af33a1414784b985fd561713cd7b365 | [] | no_license | lupomeo/Mclandia | 1869af44bee620713115ebeea6078e1b03cafe11 | ae49cb07b45a32801f597521844f69631dd31a45 | refs/heads/master | 2021-01-10T07:43:03.967679 | 2016-04-11T17:30:38 | 2016-04-11T17:30:38 | 55,713,374 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 2,774 | c |
/* ************************************************************************
* File: random.c Part of CircleMUD *
* Usage: pseudo-random number generator *
************************************************************************ */
/*
* I am bot... | [
"lupomeo@hotmail.com"
] | lupomeo@hotmail.com |
f6a027a98644f8b2a55ec4928a174f3857e9dc64 | 6596c1c9c9c3e837677aa161de67a3a850e9140e | /introclass-results/canonical/smallest/3cf6d33ab0357953aa5826c67dc74c4aa483f16ef04c973a68d58cda6f19ea712954b24f366f880b9c18b628c6605eabc4d3e80dc4aa120fac80fe680e2e708f/8/coverage.c | 711895715609997814f724a8821ad7439fb4e96a | [] | no_license | eduardodx/gecco2018-checkpoints | f42cfb4161b810235d5acedecfd689b5ecf6c883 | 34f501bd8c4470e594a0a5e8248ef91f13af4f69 | refs/heads/master | 2020-03-11T10:07:52.660538 | 2018-08-19T21:31:05 | 2018-08-19T21:31:05 | 129,933,410 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 79,440 | c | extern __attribute__((__nothrow__)) void *( __attribute__((__nonnull__(1),
__leaf__)) memset)(void *__s , int __c , unsigned long __n ) ;
struct _IO_FILE;
struct _IO_FILE *_coverage_fout ;
typedef unsigned long size_t;
typedef unsigned char __u_char;
typedef unsigned short __u_short;
typedef unsigned int __u_int;
typ... | [
"eduardodx01@gmail.com"
] | eduardodx01@gmail.com |
e5dd2158313835370bd78d601ef0d09401546b6d | fcbfb6bb7803b76573446b99658c8e28afc0cb5c | /STM32工程/STM32F103_ZET6/七彩电子/013、FATFS文件系统例程/MODULES/FATFS/src/ffconf.h | 2272177ab4eb81d760c316c933fa42be04825eb7 | [] | no_license | jok886/SCM | c851dd636c918bee043edefbc31949348f89f215 | cab278c0cff8871520f6f4e988f2e8afd83045fb | refs/heads/master | 2023-04-08T07:45:22.957455 | 2021-04-16T14:12:29 | 2021-04-16T14:12:29 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 10,827 | h | /*---------------------------------------------------------------------------/
/ FatFs - FAT file system module configuration file R0.11 (C)ChaN, 2015
/---------------------------------------------------------------------------*/
#define _FFCONF 32020 /* Revision ID */
/*--------------------------------------------... | [
"1647110671@qq.com"
] | 1647110671@qq.com |
ad362a951baae38007f410d92b8e28edc2e86fc9 | 441025c134acf74c38ace64241642c73ef5b9d74 | /20000605-1.c | a937825a76dd0fc9b56f5cd3e610b794aa98cd4a | [] | no_license | eisenhauer/cod_tests | 559cef43d2ea971358d0132c45271d193acb6ceb | de34c1b44e801b543b9bbed508f2417a1f1e7991 | refs/heads/master | 2020-12-20T11:04:11.348918 | 2015-07-13T18:30:22 | 2015-07-13T18:30:22 | 236,050,401 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,344 | c | #include "cod.h"
#undef NDEBUG
#include "assert.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <setjmp.h>
/*
* Original test was:
*/
// typedef struct _RenderInfo RenderInfo;
// struct _RenderInfo
// {
// int y;
// float scaley;
// int src_y;
// };
//
// stat... | [
"eisen@cc.gatech.edu"
] | eisen@cc.gatech.edu |
ab973424f40718789baa931692a4b284a8951a2c | b7ee1d7d8a51500e8790dc43ff80f429a5e66cf2 | /dc_motor.h | 702f00d024aa5b977a9c2e150b4d1c569597e42b | [] | no_license | krthush/bomb-finder-X | ad4bd31fa391ba2816ae4d405595406d84c8191a | 2c850bca0297834f7c2d467d87a088362a6718c4 | refs/heads/master | 2021-09-10T01:56:53.744911 | 2018-03-20T16:43:36 | 2018-03-20T16:43:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,122 | h | #ifndef _DC_MOTOR_H
#define _DC_MOTOR_H
#define _XTAL_FREQ 8000000
#include <xc.h>
struct DC_motor { //definition of DC_motor structure
char power; //motor power, out of 100
char direction; //motor direction, forward(1), reverse(0)
unsigned char *dutyLowByte; //PWM duty low byte address
u... | [
"33790334+krthush@users.noreply.github.com"
] | 33790334+krthush@users.noreply.github.com |
5f6f5a9fcf685a649a0668070bfb6ce9f8f1b700 | 3a0ada22580f9c6f0d4ba4a169b550b8b35b1c26 | /최소신장트리/13_1.c | 0d5fa03a8758616e10ab3ad9f3856ad3c9b0c0b8 | [] | no_license | soobin118/Algorithm | 6e3935c145301b6301cc5106f0eefc8235653354 | 00afbeee09b20294edd60294e33a683b7ca35cb3 | refs/heads/master | 2020-03-22T01:54:37.157251 | 2019-10-03T10:33:09 | 2019-10-03T10:33:09 | 139,337,743 | 0 | 0 | null | null | null | null | UHC | C | false | false | 3,221 | c | #include<stdio.h>
#include<stdlib.h>
int *heap;
typedef struct node {
int key;
struct node *next;
}node;
typedef struct vertices {//정점구조체
int name;
int d;
struct node *h;
}vertices;
typedef struct edges {//간선구조체
int p1, p2, w;
}edges;
int opposite(vertices v, edges e)//v에 e로 이어진 반대편 정점이름 리턴
{
if (e.p1 == v.name... | [
"noreply@github.com"
] | soobin118.noreply@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.