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
427b64ce45b076270a6e2e3f372542d6f4ff1350
6c704f71844da1331e817337a0e7ff970548af2b
/selectionsort1.c
a0b8d1120558a732800f7187469097807a2817db
[]
no_license
ltcedatabase/ltce
6389601115a5093d5ab32793df4ef90aaffb8817
db43e5eb5f08080c3df47f5bfb371871407a4a4f
refs/heads/master
2020-05-16T13:14:13.963623
2019-04-26T07:37:04
2019-04-26T07:37:04
183,068,534
0
0
null
null
null
null
UTF-8
C
false
false
478
c
#include<stdio.h> void main() { int a[10],i,j,n,smallest,swap; printf("Enter number of elements=="); scanf("%d",&n); for(i=0;i<n;i++) { scanf("%d",&a[i]); } printf("Sorted element= "); for(i=0;i<n;i++) { smallest=i; for(j=i+1;j<n;j++) { if(a[j]<a[smallest]) { smallest=j; } } swap=a[s...
[ "noreply@github.com" ]
ltcedatabase.noreply@github.com
90aaeed54e40a990f8ca06dc18356dc3fe546235
d8d6677a55df70e569365764d1143e992899cd84
/share/smallc/hello.c
7df6764bef974b3ab1418ca08be907d7dfe1a2bb
[ "BSD-3-Clause" ]
permissive
thebaron06/retrobsd
15df9d1576967a386d146c15512fafa5db55b321
c5a141ab416af745dbe4838faf6737c71f00e0c3
refs/heads/master
2021-01-16T22:09:07.797300
2014-06-04T18:29:46
2014-06-04T18:29:46
19,773,559
1
0
null
null
null
null
UTF-8
C
false
false
76
c
extern int printf(); int main() { printf ("Hello, SmallC World!\n"); }
[ "matt@majenko.co.uk" ]
matt@majenko.co.uk
da74f06ac4beaf57adcb5bc4c48e97588cc3ef69
e306f3a0c19444484d5c1f9aefe4a5dcfa959e1b
/TembooAccount_example.h
e5e4308dd3d3bfcbbca03300bab544ce746f13f8
[]
no_license
chadallen/twilio-temperature
674d665a1d722cab8bd241c5b670eedfa894c891
b371562f66f4687c64286fa9af36750fef84aafa
refs/heads/master
2021-01-23T12:11:01.923448
2015-01-16T22:17:21
2015-01-16T22:17:21
29,150,443
0
0
null
null
null
null
UTF-8
C
false
false
210
h
// rename file to TembooAccount.h #define TEMBOO_ACCOUNT "yourname" // your Temboo account name #define TEMBOO_APP_KEY_NAME "x" // your Temboo app key name #define TEMBOO_APP_KEY "x" // your Temboo app key
[ "cga@chadallen.net" ]
cga@chadallen.net
f2252d372ae44dbc04bb3cb800af728ff6b9e63d
d210a984a00922373feef52a68f04708df550f08
/wis-tar.c
17b99dd4f85c40a885262563c14c7c44a469d594
[]
no_license
MonicaSelvaraj/CS537P1a
074adac118cfd75f9399c4daa59cf44b97ef4313
7445cf3925c833eb7b00f76cdba38357e3089f45
refs/heads/master
2021-01-06T20:00:14.348189
2020-02-18T20:53:36
2020-02-18T20:53:36
241,471,196
0
0
null
null
null
null
UTF-8
C
false
false
3,667
c
//////////////////////////////////////////////////////////////////////////////// // Main File: wis-tar.c // This File: wis-tar.c // Other Files: wis-grep.c, wis-untar.c // Semester: CS 537 Spring 2020 // // Author: Monica Selvaraj // Email: mselvaraj@wisc.edu // CS Login:...
[ "selvaraj@royal-29.cs.wisc.edu" ]
selvaraj@royal-29.cs.wisc.edu
1885f453a3c872cf1e77e0a33db742c405d72476
10287b76cd674e40be1cc4dde8749ae2adf8e7ee
/src/ls.c
0ece090a96a48a8dbeb7b22087b9876af475ba93
[ "MIT" ]
permissive
dishankgoel/Neon-Shell
957ef4067612fc73fd680b8c11f6a13abf3e3ebc
4078a0b771858ac45998d1b542bc297f3a1643bf
refs/heads/master
2022-12-16T12:35:09.007573
2020-09-23T16:20:59
2020-09-23T16:20:59
298,027,491
1
0
null
null
null
null
UTF-8
C
false
false
6,158
c
/* Author: Dishank Goel * Date written: 21st August 2020 * * ls.c implements the shell command `ls` for listing contents of a directory. * Currently, it takes no option to list contents in long list format like -a -l * Usage: ./ls [DIRECTORY]... */ #include <stdio.h> #include <stdlib.h> #include <unistd.h>...
[ "dishankgoel1729@gmail.com" ]
dishankgoel1729@gmail.com
f12a6c5503cf79d9fc67b7fd5c8f6a9f32f9c9a6
de8c0ea84980b6d9bb6e3e23b87e6066a65f4995
/3pp/linux/drivers/clk/samsung/clk-pll.h
79e41c226b90235f561e0dcc2ad98a20bf32f133
[ "Linux-syscall-note", "GPL-2.0-only", "MIT" ]
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
2,817
h
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2013 Samsung Electronics Co., Ltd. * Copyright (c) 2013 Linaro Ltd. * * Common Clock Framework support for all PLL's in Samsung platforms */ #ifndef __SAMSUNG_CLK_PLL_H #define __SAMSUNG_CLK_PLL_H enum samsung_pll_type { pll_2126, pll_3000, pll_35x...
[ "erik.moqvist@gmail.com" ]
erik.moqvist@gmail.com
ebcb8d50c08ab3da194663719f2316b214757e85
9abd3d7cc7b72500ca1592571d1b4ca2741df063
/src/match/util/Hash2KeysSetOf.c
a6548245d989318fb5c77fd9c2ce252b4df3ff6e
[]
no_license
15831944/TCIDE
306291b81ba429553978b4bd63efa420480e6005
beb27d7375b14cf5e5126d8bb71d65844a217690
refs/heads/master
2022-01-28T07:45:29.125991
2018-07-10T08:46:35
2018-07-10T08:46:35
null
0
0
null
null
null
null
UTF-8
C
false
false
17,461
c
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
[ "johnwilliam@126.com" ]
johnwilliam@126.com
e00e10f98ba763f7b64b3f0d1b0cd98f79e44d91
7c2672ef76683bd92ba4b2c727f57328d3da117d
/experience/dlopen/main.c
0a63844d552e33fd7683102710cdf314b3a14164
[]
no_license
AIdrifter/Skill-C
4902098f7ee3c5c69543c39dae4e12d3ab129f46
84cc35a88a84332ac38cad0f345f25ce8e96eec7
refs/heads/master
2020-04-16T02:17:21.949444
2017-05-11T11:10:29
2017-05-11T11:14:12
44,712,153
0
0
null
null
null
null
UTF-8
C
false
false
819
c
#include <stdio.h> #include <stdlib.h> #include <dlfcn.h> int dynamic_lib(char *file_name, char *fun_name){ void *handle; double (*main_printf)(double); char *error; handle = dlopen (file_name, RTLD_LAZY); if (!handle) { fprintf (stderr, "%s\n", dlerror()); return -1; } ...
[ "aidrifter@gmail.com" ]
aidrifter@gmail.com
071d66acae7268403422a4b32471e5b8978bc649
855fb605b9a35a684913977b0a99b7d6145d06bd
/headerPractice/functionPrac.c
0917dd44193e1cb00f5917fc2918a5d068bf68c4
[]
no_license
Fallible/BlatantConsumerism
a3e0d52a88a537b77b996e9f0be1c3148abc1ea8
629fd1674dd59d688a9865790716cb0d0e0d6eeb
refs/heads/master
2020-12-31T00:53:19.533410
2017-02-10T22:20:38
2017-02-10T22:20:38
80,567,731
0
0
null
null
null
null
UTF-8
C
false
false
221
c
#include <stdio.h> int add_together ( int a, int b){ return (a + b); } main(){ int firstNumber = 6; int secondNumber = 9; int sum = add_together(firstNumber, secondNumber); printf("%i\n", sum); return(0); }
[ "snewbill@gmail.com" ]
snewbill@gmail.com
b3c18b5b038c123b2af16559a2bcab8c383d28cd
d73a9dc13aa595acc274a697270e7eba6d7c667c
/src/segment.c
9401d092e0ed814a672014a79e9fa83b53322d58
[ "MIT" ]
permissive
thulsadum/c-ssm
8efa09ca0c83160123b49b5aafcf4f452b9abb71
12f657484a1b170a7a8cd43d2037c5c66e901a6d
refs/heads/master
2021-04-25T18:13:17.160650
2017-11-16T22:18:56
2017-11-16T22:18:56
108,322,628
0
0
null
null
null
null
UTF-8
C
false
false
5,246
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "segment.h" /** allocates a new segment */ Segment_t * new_segment ( size_t payload_size ) { Segment_t * pseg = malloc( sizeof(Segment_t) + payload_size); if(!pseg) { perror("new_segment"); return NULL; } return pseg; } ...
[ "sc@inferum.net" ]
sc@inferum.net
cbc2bf5ccd6a207fe2f7ce93276959b8da964805
3843e9213cf94e04f7cac9df2b7c5d1fef192030
/seahorn/jobs/string_eq_byte_cursor/aws_string_eq_byte_cursor_harness.c
04a147759616032c1db5ee0035cf2f0d06545f82
[]
no_license
1yiyan/verify-c-common
9a57557d9fb4b8dd122ad54b3f195e1239d585fc
974dc12f46f7154091a61dadba0aaf6a9f736017
refs/heads/master
2023-08-22T11:15:11.828161
2021-10-25T01:31:44
2021-10-25T01:31:44
null
0
0
null
null
null
null
UTF-8
C
false
false
872
c
/* * */ #include <aws/common/string.h> #include <seahorn/seahorn.h> #include <byte_buf_helper.h> #include <string_helper.h> #include <utils.h> #include <stddef.h> int main() { struct aws_string *str = nd_bool() ? ensure_string_is_allocated_bounded_length(MAX_STRING_LEN) : NULL; struc...
[ "yakir.vizel@gmail.com" ]
yakir.vizel@gmail.com
cdd370f47a51321ac9e14a96f8b2bd4d7c8cdb2d
637d2b471ab26a683cf67b259c58d2f9318a1bf2
/McUtils/Extensions/FFI/libs/DynamicFFILibrary/src/libffi/win/arm32/include/ffi.h
6d24cb8a5ca4991d46122b4f71a28c8eec9417f8
[ "MIT" ]
permissive
McCoyGroup/McUtils
9c1c3befcef88d6094961e23a894efb4d97c84b1
c7c3910e7cb5105c65b01ecb17a6668d126b2063
refs/heads/master
2023-08-18T16:24:17.718849
2023-08-11T23:10:21
2023-08-11T23:10:21
188,920,933
0
2
MIT
2022-12-15T19:17:02
2019-05-27T23:29:24
Python
UTF-8
C
false
false
14,293
h
/* -----------------------------------------------------------------*-C-*- libffi 3.4.3 - Copyright (c) 2011, 2014, 2019, 2021, 2022 Anthony Green - Copyright (c) 1996-2003, 2007, 2008 Red Hat, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and ass...
[ "b3m2a1@gmail.com" ]
b3m2a1@gmail.com
d52d322001b4410617e8e8d208aa9354efc76c66
daebfc0523315d688e217652146e25e0d686800e
/src/crypto/hamsi_helper.c
8dbead692aed55b5af440c9e44375480b7de8091
[ "MIT" ]
permissive
devo2018/agon
62bf3b1e800cee594944551759cf1a6381a6442e
c07415225e6b1fe870bfb728d2c24457b3db5b89
refs/heads/master
2020-04-08T03:21:48.985897
2018-12-19T21:28:23
2018-12-19T21:28:23
158,972,556
0
0
null
null
null
null
UTF-8
C
false
false
2,220,992
c
/* $Id: hamsi_helper.c 202 2010-05-31 15:46:48Z tp $ */ /* * Helper code for Hamsi (input block expansion). This code is * automatically generated and includes precomputed tables for * expansion code which handles 2 to 8 bits at a time. * * This file is included from hamsi.c, and is not meant to be compiled * ind...
[ "45319613+devo2018@users.noreply.github.com" ]
45319613+devo2018@users.noreply.github.com
09a81c21a8acc19d0ce9cf4ebb34881a034b040e
2dda6a7cc58f161147129ebd6b6a0f932ec78e7e
/scip/pub_cutpool.h
7266d87da58884b2823f03a5bd14e9aa35327e2e
[]
no_license
antoniach/heuristic-scheduling
9425e93b27362ae32a3df07ecea8f2c053836597
476cd447cac0a28c970fac217de6aa76140cff03
refs/heads/main
2023-03-19T03:53:10.977644
2021-03-10T14:21:09
2021-03-10T14:21:09
346,367,010
2
1
null
null
null
null
UTF-8
C
false
false
3,354
h
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* */ /* This file is part of the program and library */ /* SCIP --- Solving Constraint Integer Programs */ ...
[ "" ]
6281d5fb74d24012301bcf4ce2e90c7fb6dc6ed5
ce125b00ce89b2de2c7e39f56e704a1148cb2f6e
/hello.c
4aad06a4d7d92c3e8400da01646b422b057f0b50
[]
no_license
acip/resinio-hello-world-c
2f1874ec858f4f6cb674addaf39776b46c1db6a6
81c16af28ffcc4eafdf81e8a60695b58f922afb5
refs/heads/master
2021-03-12T19:48:36.967412
2015-03-23T18:24:45
2015-03-23T18:24:45
32,748,546
0
0
null
null
null
null
UTF-8
C
false
false
111
c
#include <stdio.h> #include <stdlib.h> int main(void) { puts("Hello, world!"); return EXIT_SUCCESS; }
[ "ciprian.amariei@gmail.com" ]
ciprian.amariei@gmail.com
40e8d18f500e7d51f8a98fdc1be41b03a82a2aaf
217ba4e0aa9f6bffcf35d36bfa6d7dcb566e4638
/lib/libft/ft_dtoa/format_scientific.c
bbc854d70fd8cd6204d96ffe8de7dcb8593f9ddd
[ "Zlib" ]
permissive
hakolao/wolf3d-rasterizer
bb9c2f5f10d7638a6a2817ea4e000ac9c92da29a
7200b442bd319995b21c3983de6c0863e6742bed
refs/heads/master
2023-01-31T03:46:41.827614
2020-12-14T22:07:16
2020-12-14T22:07:16
319,421,716
1
1
null
null
null
null
UTF-8
C
false
false
3,831
c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* format_scientific.c :+: :+: :+: ...
[ "ohakola@c1r4p6.hive.fi" ]
ohakola@c1r4p6.hive.fi
22566d785beef9bb755bec58408e1867eff4fdce
7604199fe490dd54d09af76d42e9bfad99d212fe
/include/code_generation.h
1788dffe87ea285785f0022d0afbf08d4a980ff5
[]
no_license
Harald-R/c-compiler
5e0605fe930e78aa23d558248af871ecd7e0f3f2
8fe0ec36e754bb06954cdffef97bdf17df93b588
refs/heads/master
2020-05-03T20:37:17.588013
2019-05-25T15:56:54
2019-05-25T15:56:54
178,806,847
0
0
null
null
null
null
UTF-8
C
false
false
212
h
#ifndef _H_CODE_GENERATION #define _H_CODE_GENERATION #include "common.h" #include "symbol_table.h" int type_base_size(type_t *type); int type_full_size(type_t *type); int type_arg_size(type_t *type); #endif
[ "razvan.harald@yahoo.com" ]
razvan.harald@yahoo.com
3264c0fb20f4e45b2178a595388d9c91d3b27366
a04b6f7d734f8fa23400d4d26225809888cd6921
/apps/driver/i2c/sync/i2c_multi_slave/firmware/src/config/sam_e70_xult_freertos/initialization.c
eec00f8cca53cfcf37f06894711a58e11baea301
[]
no_license
MarkWendler/core
f22070929791a55a873226f51d7ead92769569b0
851ebdf85d8697ead6b617bc76240b5184b598c3
refs/heads/master
2020-04-16T04:02:14.142450
2019-01-08T17:54:28
2019-01-08T17:54:28
165,253,006
0
0
null
2019-01-11T14:03:09
2019-01-11T14:03:08
null
UTF-8
C
false
false
7,882
c
/******************************************************************************* System Initialization File File Name: initialization.c Summary: This file contains source code necessary to initialize the system. Description: This file contains source code necessary to initialize the sys...
[ "http://support.microchip.com" ]
http://support.microchip.com
58dfdbe068465d3ddcff723764b4da546a92dc32
64a331a7b37f6afbd55e12e70f1ef9194288fa1e
/src/net-snmp-5.7.3/agent/mibgroup/misc/ipfwacc.c
cca98710f97ab319761467c48948aff03b90acad
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "MIT-CMU", "BSD-3-Clause", "LicenseRef-scancode-free-unknown" ]
permissive
yahoo/panoptes_snmp
1b8a3360d0a0de8f9d6f563dfe41d589346e9dfd
52bda005eef7406a4284e847d009dc648ecc53f0
refs/heads/master
2023-08-14T17:22:04.301926
2023-04-21T15:25:19
2023-04-21T15:25:19
149,627,832
4
8
BSD-3-Clause
2023-04-21T15:25:20
2018-09-20T15:05:37
C
UTF-8
C
false
false
12,640
c
/**************************************************************************** * Module for ucd-snmpd reading IP Firewall accounting rules. * * It reads "/proc/net/ip_acct". If the file has a wrong format it silently * * returns erroneous data but doesn't do anything harmfull. Based (on the * * outpu...
[ "vvarun@yahoo-inc.com" ]
vvarun@yahoo-inc.com
9760ac6b75d758cb7a7dde19d17b99dd629e5545
de67e5c456aba30fbec75554cb12d0abcb5a18b5
/src/utils/text_input.c
b52380f38b4c06417115be1d8dfdb7434cb3b835
[]
no_license
skhoroshavin/MicroHAL
30651b10f5c57ce3cb4c6cc0419ce9fa40ef07e8
0c4c56959d0914eff9ba38fdd18acfca289e6d68
refs/heads/master
2016-09-10T20:06:58.110437
2015-01-11T15:17:26
2015-01-11T15:17:26
26,127,039
0
0
null
null
null
null
UTF-8
C
false
false
815
c
#include "text_input.h" #include <utils/buffer.h> #include <utils/int_to_string.h> void input_init( buffered_input_t * in ) { buf_init( &in->data ); buf_init( &in->argv ); } uint8_t input_process_char( buffered_input_t * in, char c ) { if( c == ' ' ) { if( buf_is_empty( &in->data ) ) return 0; if( buf_ba...
[ "skhoroshavin@gmail.com" ]
skhoroshavin@gmail.com
e2d5b973274a209b661b85010288c84daf322842
67ed96b8b4762c78c8f96d16bae2076e30dc184d
/jetRpA/fromLinux/Quality/overlay.C
c77650c585f11f40b132515d6628c170acbeb2d1
[]
no_license
XuQiao/HI
4dae1dcf600d0ea64ea26403197135790ba3c4a2
e963cd9a5a393480e83e697b37327f4f7c4de8d4
refs/heads/master
2020-12-25T16:53:40.474495
2017-02-16T06:00:17
2017-02-16T06:00:17
64,085,142
1
0
null
null
null
null
UTF-8
C
false
false
5,772
c
#include "root_setting.h" void overlay(){ gStyle->SetOptStat(kFALSE); gStyle->SetErrorX(0); //double binbound_pt[]={30,40,50,60,70,80,90,100,110,120,140,160,180,200,220,260,300,350,500}; const double binbound_pt[]={0,5,10,15,20,30,45,60,75,90,105,120,140,160,180,200,220,260,300,400,600,1000}; int Nbin_pt=sizeof(binbo...
[ "qixu@cern.ch" ]
qixu@cern.ch
e4bcc0606157115b409f76c7d3b455770974f4fb
595217d0b10a76bcba75d8a5dee52168e85e21bd
/2015/bctf/crappy/foo.c
fc9b15701a10a46b34c5cc369b7bb1abae60de6f
[]
no_license
bluec0re/CTFs
91534fa2156aefe0a08bf1069dae93e965170557
103418c9ca2982731700a8875ab3b7321fc9befc
refs/heads/master
2021-01-17T16:53:42.021411
2015-07-13T14:37:19
2015-07-13T14:37:19
39,017,203
1
1
null
null
null
null
UTF-8
C
false
false
599
c
#include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <netdb.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <arpa/inet.h> #include <pwd.h> int main() { char buffer[1024]; struct passwd *pw; FILE* fp; fgets(buffer, 1024, stdin); s...
[ "coding@bluec0re.eu" ]
coding@bluec0re.eu
416b8a92b5ad38570a33aadb24385dec2c9085c9
0ff53796a20f4e65593372f9e2fcfdaf5c0452fb
/ee_files/contrib/ti_tms570/source/eqep.c
65a18b68db8ba217d2e268d37e56dc9f1b48a329
[]
no_license
hu93123/EE_Erika_mc
663e3782bee1f426d565b4c9986c4010ff79ed65
0a2719fd2d03481479fec4617262cbf2ddb393f9
refs/heads/master
2020-06-12T19:49:14.489645
2017-10-10T07:51:57
2017-10-10T07:51:57
null
0
0
null
null
null
null
UTF-8
C
false
false
41,278
c
/** @file eqep.c * @brief EQEP Driver Source File * @date 08-Feb-2017 * @version 04.06.01 * * This file contains: * - API Functions * - Interrupt Handlers * . * which are relevant for the EQEP driver. */ /* * Copyright (C) 2009-2016 Texas Instruments Incorporated - www.ti.com * * * Redistributio...
[ "bibinc17@gmail.com" ]
bibinc17@gmail.com
6796b647a2c1c16611c83ea79b55bf3cd32879fc
4505d0ae61c458ab471580b50626593830f0b408
/runExtender/runExtender.C
4ab2927eb2c0a4a19ca8b79938ae70f6231762bd
[]
no_license
ttbarMET-at-IPHC/Stops-AN-14-067
d153ef9868d37682a0d6cae0a21a516ed809fa89
5057e45c07a7ee6ff1e8631fad0881c2bfc360b2
refs/heads/master
2021-01-24T23:35:55.900352
2015-07-23T05:34:30
2015-07-23T05:34:30
19,778,684
0
0
null
null
null
null
UTF-8
C
false
false
58,850
c
// C / C++ headers #include <cmath> #include <iostream> using namespace std; #include <algorithm> #include "TColor.h" #include "TStyle.h" #include "TH1F.h" #include "TH2F.h" #include "TGraph.h" #include "TMultiGraph.h" #include "TCanvas.h" #include "TLegend.h" #include "TStyle.h" #include "TLatex.h" #include "TP...
[ "sigamani@cern.ch" ]
sigamani@cern.ch
6d74e4979c560014a296c91ac981bb5d0e6c99fd
39ab0c320d5b7e8745e11a58793fd3af8df5ab7b
/php-5.1.6/ext/spl/spl_directory.c
1f949eaf34ea41748e8567c81066f9a4430f06d0
[]
no_license
nazarevrn/docker_test
42926d5dcd850a9baf367156cb5c13a7cf6d15ca
2718969fcd18fb3a9c7d641d9a181ddfa51fff78
refs/heads/master
2020-09-05T10:11:57.010743
2019-11-07T07:17:23
2019-11-07T07:17:23
220,069,457
0
0
null
null
null
null
UTF-8
C
false
false
68,554
c
/* +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2006 The PHP Group | +---------...
[ "r.nazarev@efko.ru" ]
r.nazarev@efko.ru
40f0cec679f5e89148304ee87561cb5268090cf7
068812efaaa7ba6ac66bf872255bf94937cc086a
/Adm_Employees/misFunciones.c
c87c6b651e27631867a3fbf1d6dc349f8f70be96
[]
no_license
aumaza/Adm_Employee
326133b29d0ef360ad26977ddc16fd52ffc7c873
5b89b5d25d756aeab746b75e11bf8e9cd11aa657
refs/heads/master
2020-04-03T10:23:36.078753
2018-11-01T02:09:44
2018-11-01T02:09:44
155,191,629
0
0
null
null
null
null
UTF-8
C
false
false
8,401
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <conio.h> #include "misFunciones.h" /** \brief Funcion ctrlwr * * \param convierte un caracter a minuscula.- * \param recibe como parametro un puntero a char.- * \return Devuelve un caracter a minuscula.- * */ char charTo...
[ "noreply@github.com" ]
aumaza.noreply@github.com
53fe7e5ca829fed4cc8626d8e8b863d14373591c
b1fa25c12d671d260324bdaeb4748d113ee4d37a
/PruebaGdb.c
166cf2babdf209efb8d74db8b1d8d0331d987d78
[]
no_license
aquintanar/dummyrepo
57ac477f66e2182d7fbd4c1a9de78bc1adfd8614
f504fca483f7ae4b0c1b60377511718eddf2b672
refs/heads/main
2023-07-24T11:46:59.952892
2021-09-08T17:21:51
2021-09-08T17:21:51
403,677,593
0
0
null
null
null
null
UTF-8
C
false
false
313
c
#include <stdio.h> #include <stdlib.h> extern void incnumber(int size,int*arreglo); int main (){ int size=5; int *arreglo; arreglo=(int*)malloc(sizeof(int)*5); arreglo[0]=1; arreglo[1]=3; arreglo[2]=5; arreglo[3]=7; arreglo[4]=9; incnumber(size,arreglo); return 0; }
[ "a20191876@pucp.edu.pe" ]
a20191876@pucp.edu.pe
476d46437bf4dd9f84ef5157339f929d0e7afe72
0673a54f6c8756539ac479c7aee77ddaa1ec7ebe
/Frameworks/AudioToolbox.framework/Headers/AudioServices.h
7b499d5b444b8130604a3e73ecfdebf5f7d4eb27
[]
no_license
wonwinlee/iOSSystemFrameworks
5cc338521f318e14b739297b4d3432587625a5d6
606099911a244d419214f61c555fa8f327970c8e
refs/heads/master
2021-01-15T13:07:23.424213
2016-08-20T12:03:02
2016-08-20T12:03:02
null
0
0
null
null
null
null
UTF-8
C
false
false
33,876
h
/*! @file AudioServices.h @framework AudioToolbox.framework @copyright (c) 2006-2015 by Apple, Inc., all rights reserved. @abstract API's for general high level audio services. @discussion AudioServices provides a means to play audio for things such as UI sound effects. The Audio Hardware S...
[ "wangnistronger@icloud.com" ]
wangnistronger@icloud.com
c10d37e14b793581c2b207cbbdd2e87250d0920b
d2ab7d271e93a0b8b3e3f3a149f62af64aabec18
/picamcv/src/RaspiPreview.c
9c0df14dddd653527a5bb5a5aad083cf9b46b18f
[ "BSD-2-Clause" ]
permissive
dolmong/LocationSystem
d98ef4e27bf2a45ea9cd6fc8350d079ee37ebe38
a7fe025cd25db8c58c832bbaa108b2c53119356d
refs/heads/master
2021-01-15T19:28:20.849629
2013-09-12T06:22:09
2013-09-12T06:22:09
null
0
0
null
null
null
null
UTF-8
C
false
false
8,260
c
/* Copyright (c) 2013, Broadcom Europe Ltd Copyright (c) 2013, James Hughes All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright noti...
[ "pi@raspberrypi.(none)" ]
pi@raspberrypi.(none)
7909bf431a04ec8a97ed3c65d9b6467d663b4c09
98beb68baeeeb6812fe81ee698dc2584dc5fe460
/Praktek/KUMPULAN ADT/boolean ADT Stack Linked List/boolean.h
8a5b7f55e30d092090f457d3d4194ce141865f0f
[]
no_license
arsalfadilah/SDA-Praktek
2294cc4b41e2005cef42e6f5726e2f2da76bfdf5
add5f474010f3dc95b0bb315570697f42eb9b10b
refs/heads/main
2023-06-15T10:52:35.662819
2021-07-08T23:57:56
2021-07-08T23:57:56
384,265,460
0
0
null
null
null
null
UTF-8
C
false
false
283
h
/* * File : boolean.h * Nama Kelompok : Rifki Imam Abdillah <3411171044> * Reji Pikriyansah <3411171046> * Deskripsi : Header file boolean */ #ifndef boolean_H #define boolean_H #define true 1 #define false 0 #define boolean unsigned char #endif
[ "arsal.fadilah.tif420@polban.ac.id" ]
arsal.fadilah.tif420@polban.ac.id
ce07ceab7da25a6d53ff19daddb873f5da7d5453
ca7a971741ab4b69735b0e399c183a78264ebec7
/HID_GamePad_old.c
f26c0fe415a97c2c392d3ea745675f4b7eeb93d1
[]
no_license
ca4ti/HID-GamePad
3d751e41563dbf8fc571e308d8247e3e4f344c15
f721f852a314a282b5e1dd4777b822a2e2e5be14
refs/heads/master
2021-12-03T06:26:21.697553
2014-04-27T10:36:01
2014-04-27T10:36:01
null
0
0
null
null
null
null
UTF-8
C
false
false
5,978
c
/* Name: main.c * Project: HID-Test * Author: Christian Starkjohann * Creation Date: 2006-02-02 * Tabsize: 4 * Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt) * This Revision: $Id: main.c 299 2007-03-29 17:07:19Z cs $ */ ...
[ "y-mena@pisem.net" ]
y-mena@pisem.net
ae988409ca65b88afec53f6f45d08c5dcded5885
525b0aeaed9be56fee31f445b093d95ef17e9b43
/src/display.c
01b04faaa875421f0ce32a196b2d9b01efa09425
[]
no_license
Victor-Frocrain/MUL_my_defender_2018
678f3c1048193040876278db9d20623afcf88178
62e38c2451c46cb6267f9060abefabe208e56e68
refs/heads/master
2023-01-12T04:13:11.895583
2020-11-19T16:43:07
2020-11-19T16:43:07
null
0
0
null
null
null
null
UTF-8
C
false
false
1,579
c
/* ** EPITECH PROJECT, 2019 ** display ** File description: ** display */ #include "defender.h" void fill_land(graph *s) { int total = (WIDTH / 60) * (HEIGHT / 60); int i = 0; srand(sfTime_asMicroseconds (sfClock_getElapsedTime(s->clock->game))); s->land = malloc(sizeof(char) * (total + 1)); ...
[ "vfrocrain@localhost.localdomain" ]
vfrocrain@localhost.localdomain
34b0ae5e5ed8d88f5b65efc7dd42c8d61288458e
103dd550b09a1dbb53383fa98454b8761d0027a5
/lab5/metronome/metro_client.h
6f4fa1ea4296427d9b5875d0dfa79e6b877e9327
[]
no_license
woojinnn/EE414_Embedded_Systems
784326267b207c3bffecea6d5a18fabf492f227e
697eab4c4200918e4f7c7f38ae50db4680749145
refs/heads/main
2023-07-11T06:56:01.529815
2021-08-25T15:34:59
2021-08-25T15:34:59
399,863,912
1
0
null
null
null
null
UTF-8
C
false
false
120
h
#define True 1 #define False 0 void signal_handler(int); void init_KEY(); int key_hit(); char getch(); void exit_KEY();
[ "wjl0209@kaist.ac.kr" ]
wjl0209@kaist.ac.kr
3536d6a30bb139ec1cfc241676c0353b572acaf4
4be23f76f9e29e26f5c81be401822cde71a10ffe
/ATMBackgroundManagementSystem/Config/connectionsql.h
4a951fafc27fc988c4696cf35ab1f2ff5832fd60
[]
no_license
weiyinhao/ATM_System
4e1f402e08fc7f4bc2982d8c8aa8157caec9aef4
df0faeec2b94d4f4f2774f9ecf3ff124f31502cd
refs/heads/master
2021-03-28T21:41:39.866881
2020-03-17T07:36:52
2020-03-17T07:36:52
247,896,023
0
0
null
null
null
null
UTF-8
C
false
false
884
h
#ifndef CONNECTIONSQL_H #define CONNECTIONSQL_H #include <QSqlDatabase> #include <QSqlError> #include <QSqlQuery> #include <QDebug> #include "Config/helper.h" //创建数据并连接数据库 static bool createConnection() { QSqlDatabase db=QSqlDatabase::addDatabase("QODBC");//数据库驱动类型为SQL Server QString dsn=QString::f...
[ "noreply@github.com" ]
weiyinhao.noreply@github.com
921fcaf252d5312b32d2f884ce084d0fe756466b
0aef26863f142bef75a0e4aaf7da76fc95e3d8ae
/crypto_aead/knot192/opt/encrypt.c
1cf2f3c0afa507b2081058a343a0b8b96bca1634
[]
no_license
jedisct1/supercop
94e5afadc56ef650d7029774a6b05cfe2af54738
7c27338ee73a2bd642ba3359faaec395914175a2
refs/heads/master
2023-08-02T20:12:39.321029
2023-05-30T03:03:48
2023-05-30T03:03:48
179,046,113
23
2
null
null
null
null
UTF-8
C
false
false
7,673
c
#include"api.h" #include"crypto_aead.h" typedef unsigned char u8; typedef unsigned long long u64; typedef long long i64; typedef unsigned int u32; #define RATE (96 / 8) #define PR0_ROUNDS 76 #define PR_ROUNDS 40 #define PRF_ROUNDS 44 #define sbox(a, b, c, d, e, f, g, h) ...
[ "github@pureftpd.org" ]
github@pureftpd.org
c9077d129759d69f03b327efc72450c02374a0cf
09140c9111164e1c6418893e0e62172fc5ef3b4f
/findpat/lib/kpw_check.c
258a7e297eeefe43df3cd28b161786ba05aac50c
[ "MIT" ]
permissive
yoriyuki-aist/findpat
1c3088f4a8fe5c519feeaf7b7f878e58c08a29a6
6975efb4414197bf91babd7775bb8c48d2befd0f
refs/heads/main
2023-08-30T15:44:59.868961
2021-11-13T17:31:57
2021-11-13T17:31:57
null
0
0
null
null
null
null
UTF-8
C
false
false
12,180
c
#include <stdlib.h> #include <string.h> #include <assert.h> #include <stdarg.h> #include <errno.h> #ifdef GZIP #include "zlib.h" #endif #include "common.h" #include "macros.h" #include "kpw_check.h" #include "kpwapi.h" extern kpw_header kpw_def; kpw_index* kpw_idx_alloc(uint sz); #define Report(...) fprintf(stderr...
[ "placiana@dc.uba.ar" ]
placiana@dc.uba.ar
b96c8013dc214a1f3956d921dffce63f077094a4
428ee0ffa18bcf429eb264b75d261a704ebc796a
/tools/scion/tools/host/target/bootstrap/at91sam9261-ek/at91lib/boards/at91sam9261-ek/at91sam9261/AT91SAM9261.h
237c6978fb34a1f63579efb464cd4e61361d1a6a
[]
no_license
lepton-distribution/lepton-root.scions
e7ff7cf1b99bbe1b018d00733b545f2df421fe09
ba1438889e853f713b70e7e268db2a671f7bca78
refs/heads/master
2021-01-24T01:47:15.200321
2019-06-20T14:43:45
2019-06-20T14:43:45
38,766,554
2
1
null
null
null
null
UTF-8
C
false
false
262,367
h
// ---------------------------------------------------------------------------- // ATMEL Microcontroller Software Support - ROUSSET - // ---------------------------------------------------------------------------- // Copyright (c) 2008, Atmel Corporation // // All rights reserved. // // Redistributio...
[ "lepton.phlb@gmail.com" ]
lepton.phlb@gmail.com
1e653c3fae6b2cf25fa9be56b60e204fb59ec963
78d7e47b1fc4952638567880ed97659ce46a46cc
/Enigma.X/switches.h
4ed029884a6b7bb1196238b7120bf2ba732017aa
[]
no_license
denis-brasseur/Enigma_Basys_MX3
81aab3d32c2d4762a31c2dfee837c9b100bee8ac
1f4092d3f60766cbf1652f956280ce5c5181d5e5
refs/heads/master
2020-12-11T09:39:41.288400
2020-01-16T15:45:37
2020-01-16T15:45:37
233,811,342
0
0
null
null
null
null
ISO-8859-2
C
false
false
591
h
/* * File: switches.h * Author: visiteur * * Created on 10 décembre 2019, 14:13 */ #ifndef SWITCHES_H #define SWITCHES_H #include <xc.h> #include <sys/attribs.h> #define SWITCH0 read_switch(0) #define SWITCH1 read_switch(1) #define SWITCH2 read_switch(2) #define SWITCH3 read_switch(3) #define SWITCH4 read_sw...
[ "denis.brasseur@yahoo.fr" ]
denis.brasseur@yahoo.fr
60e52f92b9bbba4bfb890ec048c9048f4114cbf9
b57f5e5538cb10a22db64491780cfbcb45e7d2e6
/fv033.c
6624375df06addd20b2d5f9926ad0821a4198ec4
[ "MIT" ]
permissive
t-koishi/cdview
dc4c564efd2f6ee8bb8c5f8cfe3e2bbd0cbe06d7
7c2b0558c7e42354bb705a4cf5484a6f120d0846
refs/heads/master
2021-07-13T00:28:03.561732
2020-08-14T06:10:16
2020-08-14T06:10:16
55,647,895
1
0
null
null
null
null
UTF-8
C
false
false
113,208
c
/* Field Viewer ver 0.33 */ #define VER 0.33 #include <stdio.h> #include <stdlib.h> #include <string.h> #ifdef ICL #include <mathimf.h> #else #include <math.h> #endif #include <sys/stat.h> #include <stdarg.h> #include <GL/glut.h> #include "ks_std.h" #include "ks_gl.h" #include "ks_math.h" ...
[ "18316633+t-koishi@users.noreply.github.com" ]
18316633+t-koishi@users.noreply.github.com
bcc43f8da23bb8cb14183740c6913753e0da131f
18bd23572d518cc9cf2d4b800cdfd7eeb6bb86aa
/EEPROM_MCAL.h
763709d757ef50b5a640b58f790a5b327a6ddab3
[]
no_license
mimo56111/Group1-Zag
e6cc23a5f97adeae42950a915f0d0467325bcc43
75dc3c78c3c260aaf9bd99702bbb2440f1f1eb69
refs/heads/master
2022-11-24T14:37:50.498335
2020-07-29T16:11:23
2020-07-29T16:11:23
254,898,538
0
1
null
null
null
null
UTF-8
C
false
false
670
h
/* * EEPROM_MCAL.h * * Author: Mahmoud Ayman */ #ifndef EEPROM_MCAL_H_ #define EEPROM_MCAL_H_ /* Function Name : EEPROM_Write Function Returns : void Function Arguments : unsigned short address of the desired location ,unsigned char value Function Description : Write the value sent to the desired...
[ "mahmoudayman20755@gmail.com" ]
mahmoudayman20755@gmail.com
c0afd0d5dd3ce8eb507ad14945320d4706e8c1e5
901c2b012091810c6cb63e6afb92c7f3b3150996
/Classes/Native/mscorlib_System_Predicate_1_gen_31.h
a63bfbe633228973a0a05518dc3df1b56d01f6e9
[]
no_license
8BitRain/photoshphereSwift
83f4fce894b91d07ba95060d4e3b194cfc74b5aa
57ef01c804757d38bda5258f1d188db05ab1d563
refs/heads/master
2021-01-13T00:40:51.272582
2015-11-14T06:39:29
2015-11-14T06:39:29
46,164,639
0
1
null
null
null
null
UTF-8
C
false
false
483
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // UnityEngine.UI.RectMask2D struct RectMask2D_t564; // System.IAsyncResult struct IAsyncResult_t9; // System.AsyncCallback struct AsyncCallback_t10; // System.Object struct Object_t;...
[ "8BitRain@gmail.com" ]
8BitRain@gmail.com
633503cb0c8df0d8279296681471c61468277651
4a0cd77b17061aedc7ce59f56f2ae0800ff60d97
/src/io/io.h
67856bc861db52f524f7160237e10554f763a27f
[]
no_license
mlazowik/spellcheck
56c2c411ae8c53458344bf3429a88733907e2424
5666df4c37eccfffc1a03b829e711f2fe24c0801
refs/heads/master
2020-12-24T20:52:21.968292
2015-07-01T11:12:26
2015-07-01T11:12:26
56,096,275
0
0
null
null
null
null
UTF-8
C
false
false
1,686
h
/** @defgroup io Moduł wejścia/wyjścia Biblioteka obsługująca wejście i wyjście. */ /** @file Interfejs biblioteki obsługującej wejście i wyjście. @ingroup io @author Michał Łazowik <m.lazowik@student.uw.edu.pl> @copyright Uniwersytet Warszawski @date 2015-06-06 */ #ifndef __IO_H__ #define ...
[ "m.lazowik@student.uw.edu.pl" ]
m.lazowik@student.uw.edu.pl
fa3978b1598bb83ac8e65505b4e11e3f84ba6e21
dcd247d6b3cc3745404b3fd52cf50453f9603612
/KXCJ9加速度计(软件I2C)/User/main.c
47d0c7e6328ef30ebde0c650f02d0400aae66b06
[]
no_license
gchh/STM32F103C8T6
2fcc129bd4042a9026b5cf508cc1398e6d82dd69
3765da085be9483b2872dceff3c5c6e590681039
refs/heads/master
2020-03-31T08:05:23.891382
2019-08-05T15:38:59
2019-08-05T15:38:59
152,045,302
0
0
null
null
null
null
GB18030
C
false
false
2,411
c
/** ****************************************************************************** * 文件名程: main.c * 作 者: * 版 本: V1.0 * 编写日期: * 功 能: KXCJ9-1008加速度传感器 ****************************************************************************** * 说明: * * **********************************************...
[ "skring.2008@163.com" ]
skring.2008@163.com
85f64cf0b26564faf9d92390eb2f1c1931044d01
303b7daa2f1981139fde3ed99bbf7a745b73f665
/stack/DArrayedStack.c
0ada8efb234db630c27d5812462630a8dd95e06d
[]
no_license
darbe/Data-Structure
a2f6f141e4ce904742c855c02e88d1d5ff55fac6
e611e7ab16900619306de9b2bec323fa4560f829
refs/heads/master
2020-09-23T11:26:43.600145
2016-09-08T07:47:11
2016-09-08T07:47:11
67,679,708
0
0
null
null
null
null
UTF-8
C
false
false
877
c
#include"stack.h" #include<assert.h> #include<stdio.h> #include<stdlib.h> #include<malloc.h> #define STACK_SIZE 100 static STACK_TYPE *stack; static size_t stack_size; static int top_element = -1; void create_stack(size_t size) { assert( stack_size == 0 ); stack_size = size; stack = malloc(stack_size * sizeof(STAC...
[ "root@localhost.localdomain" ]
root@localhost.localdomain
7f6198afb60bb469b76773dc9ce8af7e4e663ba8
dbeaef4ab3bc0a71541799ad21d2d628c17d8246
/poin/Pointer/pointer.h
6667ace9a8a4809a2ae039f973a9959b30c9c3f4
[]
no_license
HerryLo/CStruct
4db4576e0b503963ea217925985e5388aa268503
4087171c8d570551afa1bc8490e1a3ae495e1312
refs/heads/master
2022-04-29T06:23:30.768832
2022-04-28T02:49:12
2022-04-28T02:49:12
214,840,628
21
2
null
null
null
null
UTF-8
C
false
false
204
h
// // pointer.h // CC // // Created by HerryLo on 2019/10/10. // Copyright © 2019年 HerryLo. All rights reserved. // #ifndef pointer_h #define pointer_h #include <stdio.h> #endif /* pointer_h */
[ "herrylo@MacBook-Pro-3.local" ]
herrylo@MacBook-Pro-3.local
0a064798c49dd4c1e99cecdb513c6b3c1a2763b0
95a09e59bd1cf43bc0e6769a089b6226a7e70d18
/SysManager/SysMgrAdapt/SysMgrAdapt.c
a2e3737ed3d86c0b7ebeea3b5f5268306ea471b1
[]
no_license
PreethaRaj/MyFirstRepo
ae7eb98d4b39f26e9da6b897e0f83de51ca24a2d
9ce09b44ebdc78cd3718c65c3e78f2193dae010d
refs/heads/master
2021-06-14T14:31:25.888023
2021-01-26T01:24:26
2021-01-26T01:24:26
101,598,943
0
0
null
2021-01-24T11:37:20
2017-08-28T03:07:59
C
UTF-8
C
false
false
4,050
c
/*! * \file SysMgrAdapt.c * \brief System Manager adaptation layer * * Search for "SYSMGR_ADAPTATION" to see where are the adaptations that can be done to fit to your platform * [SYSMGR_ADAPTATION begin] * This file allows to define all tasks of your system with their core affinity and priority (see SYSADAPT_Syst...
[ "Preetha.rajendran@schneider-electric.com" ]
Preetha.rajendran@schneider-electric.com
4a3cd763c28c779930abf8a7ddba824aed727701
ee73fdcceb1094108c0a9e209535d7915e2e33b3
/Green openETCS Non-Vital Demonstrator/Source Code/Source Code ETCS Onboard Unit System/Generated_Code/KCG-ERSA/SimpleValidityCheck_SDM_Input_Wrappers.h
98973723f4681f289cb88be2d607acf047efffbe
[]
no_license
stefan-karg/srcAndBinary
d912b03c44d75b807dc4f9b67938dde73dd52ccf
5e0a11c72a20ca8c1386c55d0cd3e4c7463fb600
refs/heads/master
2020-12-31T03:36:26.071772
2015-12-07T14:57:47
2015-12-07T15:00:53
47,557,434
0
0
null
2015-12-07T14:36:45
2015-12-07T14:36:45
null
UTF-8
C
false
false
1,530
h
/* $**************** KCG Version 6.4 (build i21) **************** ** Command: kcg64.exe -config R:/Repositories/modeling/model/Scade/System/OBU_PreIntegrations/Demonstrators/ERSA_EVC_Testrunner/config.txt ** Generation date: 2015-12-07T14:47:37 *************************************************************$ */ #ifndef _...
[ "info@stefankarg-it.de" ]
info@stefankarg-it.de
a9fac6c9615cfa2345b40741d598c7ed4414d3f0
c66076a54253137c137bc4127a49a089ef61a60f
/project/apps/Examples/CMP/AnalogWatchdog/main.c
e787bcf167885bde77b595df5e674fdd6a3a1872
[]
no_license
SoCXin/GD32F150
e2e1861a01645cb4fcc3807379c7aab4b4a8510a
39e0b5ca0f37e322a5879f7bf60ec4a4cd1ea934
refs/heads/master
2023-05-04T06:31:09.229407
2021-05-25T03:47:01
2021-05-25T03:47:01
155,232,846
0
0
null
null
null
null
UTF-8
C
false
false
6,416
c
/** ****************************************************************************** * @file CMP/AnalogWatchdog/main.c * @author MCU SD * @version V2.0.0 * @date 15-Jan-2016 * @brief Main program body. ****************************************************************************** */ /* Includes...
[ "qitas@qitas.cn" ]
qitas@qitas.cn
bd156e658a825e27cc514bbd9b83ff9ffcb8959d
dbc2acc5a84bc64145ea0e74f821111d703d9db3
/library/greendyadic.c
9290361ab8bce2fc7484ce4ab689f97d208de26f
[]
no_license
zlin-opt/axisym_meta3d_inverse_design
4f1d3dafdf8ce37fb149afb7ad1568e1c26142a0
6f8da7c040fa9b2e48e6ee329f803be834ab20ee
refs/heads/master
2023-01-24T01:15:38.374096
2023-01-14T01:05:59
2023-01-14T01:05:59
288,950,561
0
0
null
null
null
null
UTF-8
C
false
false
6,598
c
#include "greendyadic.h" const PetscInt maxeval_green=10000; const PetscReal abserr_green=1e-6; const PetscReal relerr_green=1e-6; PetscInt fE(unsigned ndim, const PetscReal *t, void *data, unsigned fdim, PetscReal *fval) { PetscReal theta = t[0]; PetscReal *params = (PetscReal *)data; PetscReal x ...
[ "zinlin@photon-newton.ee.Princeton.EDU" ]
zinlin@photon-newton.ee.Princeton.EDU
f99442421716233725506d6fae5fe2edb4d3d801
b4171c415e6df5eebb71f17d47efc2ee0aaf87e0
/libchula/macros.h
069cd74e084c3a571f07582ba14a8145e7382549
[ "BSD-2-Clause" ]
permissive
alobbs/libchula
00669d8db37a7919553c354fee2cbc099e1e6c3a
9fcfa48fb95e5a1fe091f23b61eb886fbc133b99
refs/heads/master
2021-01-15T12:26:03.382671
2015-07-01T10:21:14
2015-07-01T10:21:14
27,051,463
2
0
null
null
null
null
UTF-8
C
false
false
10,486
h
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* All files in libchula are Copyright (C) 2014 Alvaro Lopez Ortega. * * Authors: * * Alvaro Lopez Ortega <alvaro@alobbs.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted pr...
[ "alvaro@gnu.org" ]
alvaro@gnu.org
4c1d4be3dc4bf47f717f841740b7cfe9062e8ed8
c4333cfe0d69d523b1e148c077b15ba5903cb97e
/Intel/ElkhartLakePlatSamplePkg/Features/I2c/I2cTouchPanelDxe/I2cTouchPanel.h
8666f07f86aa930536dbdf1d5292c694d5f25e42
[]
no_license
scotthe2022/ElkhartLake_Silicon_reference_and_Platform_Sample_Code
cb7b2e9cc2c7cf57c4a66a0f89e49ccf0789615f
b0149682f932de6bb88199814f9885abcdb97579
refs/heads/master
2023-07-03T20:32:25.052970
2021-08-20T20:30:59
2021-08-20T20:30:59
null
0
0
null
null
null
null
UTF-8
C
false
false
9,685
h
/**@file Header file for Touch Panel Driver @copyright INTEL CONFIDENTIAL Copyright 2013 - 2016 Intel Corporation. The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material rem...
[ "1069096459@qq.com" ]
1069096459@qq.com
f2e3f6c253dd5d0cafb8789bcdfe2c272480f5f3
2fcf5eb09831b6e4188b9245c663d283c120220c
/src/libtjota/handler.h
b30d2e480973ef2d998d32db96865c86d7443e21
[]
no_license
yellow-sem/libtjota
7a3d8c33db3e1ec55f4b9cc54b45b578acee8477
ee016d40d2b943dfd9cd68f00a370f2f67b7b78e
refs/heads/master
2021-01-12T14:59:26.223451
2016-11-06T21:53:22
2016-11-06T21:53:22
71,658,943
0
0
null
null
null
null
UTF-8
C
false
false
712
h
#ifndef HANDLER_H #define HANDLER_H #include <stdbool.h> #include "regex.h" typedef struct { const char *regex_s; regex_t *regex_c; void (*handle)(int argc, char **argv, void *data); void *data; } tm_handler; tm_handler *tm_handler_new(); tm_handler *tm_handler_new_regex(const char *regex_s, ...
[ "snogaraleal@gmail.com" ]
snogaraleal@gmail.com
5a54ffc60589da6e9f67bf1ff4b451ff21ffa01e
5d670a0eb3afb43114e802201d4b6f7341175670
/Gecko_SDK/platform/Device/SiliconLabs/EFM32JG12B/Include/efm32jg12b_wdog.h
3080acf043b8f915dd5db3ee465b82717a8e8ff8
[]
no_license
heitorschulz/embarcadosII
6b942d133db992deef27506d17f213644df39440
c9350a5bbf8af576d3ed703f13e66ce4a0b4c173
refs/heads/main
2023-04-13T04:20:03.425992
2021-04-28T01:32:04
2021-04-28T01:32:04
344,255,111
0
0
null
null
null
null
UTF-8
C
false
false
34,906
h
/**************************************************************************//** * @file efm32jg12b_wdog.h * @brief EFM32JG12B_WDOG register and bit field definitions * @version 5.1.2 ****************************************************************************** * @section License * <b>Copyright 2017 Silicon...
[ "heitorschulz@gmail.com" ]
heitorschulz@gmail.com
662023893ac95966494b271abc18d3043fa0f31a
7ba254b6e04238d482c62420781fa995719a984c
/mpac_mproc/test/regress/DMA/tic/dma_test14.tic.c
58bf5060be8a6ebe90e8eb79bc64b5b3a6cc196b
[]
no_license
cuibixiong/multicore-simulation
25d3ba38ad1270e19868e297fa6af484606ed638
8b22030c2e264fee08ff92f315a2948e45de9012
refs/heads/master
2021-01-01T05:35:34.857120
2013-05-26T16:04:22
2013-05-26T16:04:22
10,299,972
1
1
null
null
null
null
UTF-8
C
false
false
2,149
c
/* Parameter 0 */ A(0x24000000); W(0x00000000); A(0x24000004); W(0x00000000); A(0x24000008); W(0x00000000); A(0x2400000C); W(0x00000000); A(0x24000010); W(0x00000000); A(0x24000014); W(0x00000000); A(0x24000018); W(0x00000000); A(0x2400001C); W(0x00000000); A(0x24000020); W(0x00000000); /* Parameter 1 */ A(0x24000030)...
[ "cuibixiong@gmail.com" ]
cuibixiong@gmail.com
db305caefdaf6f1f0f16f9eb76e570d0436f233a
ae56d5558def55529d4e442e0adf408c2cb242fd
/wos.ru_iOS/Pods/Headers/Chivy/CHWebBrowserViewController_iPhone.h
4504f0523e20ade187e4a55604cd406ede264831
[ "MIT" ]
permissive
DZamataev/wos.ru_iOS
1b2b218abc97889789601ee08e52157a5aed50c5
923923c9aea4e595c40c0077a1c12b5ea827e440
refs/heads/master
2022-05-09T07:23:09.347598
2022-03-18T09:26:52
2022-03-18T09:26:52
15,336,311
1
0
null
null
null
null
UTF-8
C
false
false
59
h
../../Chivy/Core/Source/CHWebBrowserViewController_iPhone.h
[ "denis.zamataev@gmail.com" ]
denis.zamataev@gmail.com
73d8b6cdfd5fee45c5d6d379844e0d509c999306
a795800fec7a31e3989a451bad49564c29820a10
/includes/emod/drv_iic.h
429d794f178edbf84ba0b2f39bf3d66db099d247
[]
no_license
sabars/C100A
61ada2a009322dfa13007829ef003518033e6cb6
b9a1b31d011ccc1a17a2641d75bffd0b6554f76d
refs/heads/master
2020-12-08T04:31:16.271446
2016-03-23T12:56:07
2016-03-23T12:56:07
null
0
0
null
null
null
null
GB18030
C
false
false
4,718
h
/* ********************************************************************************************************* * ePDK * the Easy Portable/Player Develop Kits * hello world sample * * ...
[ "robertzhu@msn.cn" ]
robertzhu@msn.cn
8cae9935d4c8bbfc8a09cfb812addb3cf8327971
600df3590cce1fe49b9a96e9ca5b5242884a2a70
/third_party/mesa/src/src/gallium/include/pipe/p_shader_tokens.h
7d96f27e018ed0b6291ff469de4af46182734de7
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "LGPL-2.0-only", "BSD-3-Clause" ]
permissive
metux/chromium-suckless
efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a
72a05af97787001756bae2511b7985e61498c965
refs/heads/orig
2022-12-04T23:53:58.681218
2017-04-30T10:59:06
2017-04-30T23:35:58
89,884,931
5
3
BSD-3-Clause
2022-11-23T20:52:53
2017-05-01T00:09:08
null
UTF-8
C
false
false
21,404
h
/************************************************************************** * * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas. * Copyright 2009-2010 VMware, Inc. * All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated...
[ "enrico.weigelt@gr13.net" ]
enrico.weigelt@gr13.net
b94a5c74720600e5b4be50ed35aea144dde72bb0
a6e16f8b4e3e9dfb7a8b6f323b7e35fb82537222
/C/Matrix Daten Systeme/Screeneye/Matrix/APP/JPEG_DSP/JPSRC4/ANSI2KNR.C
86e27afdb31682448c3af9bb7df05eb3c35b59c5
[]
no_license
pjones1063/Atari_ST_Sources
59cd4af5968d20eb3bf16836fc460f018aa05e7c
fe7d2d16d3919274547efbd007f5e0ec1557396d
refs/heads/master
2020-09-04T20:21:44.756895
2019-10-30T12:54:05
2019-10-30T12:54:05
219,878,695
2
0
null
2019-11-06T00:40:39
2019-11-06T00:40:39
null
UTF-8
C
false
false
16,705
c
/* Copyright (C) 1989, 1991 Aladdin Enterprises. All rights reserved. Distributed by Free Software Foundation, Inc. This file is part of Ghostscript. Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the c...
[ "ggn.dbug@gmail.com" ]
ggn.dbug@gmail.com
bb76c8781fb57dec5a664e1f722b77f74b4c055b
d5fd0fe12b3075e99669364117c40654a1a5db63
/app_queue/router.c
9a15c335c4d9eb1c5814a831b1dfb5cb1460a398
[]
no_license
wangqingcaoai/jcqueue
81c5274911b47fd3c7df85f4a023f79388290b07
24d8b3dc846f6d274eea6e49d0ae457a6c071438
refs/heads/master
2021-01-02T09:09:26.763001
2013-06-16T02:31:31
2013-06-16T02:31:31
null
0
0
null
null
null
null
UTF-8
C
false
false
25,766
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "router.h" #include "../errors.h" #include "subscribe.h" #include "../base_queue/router.h" #include "request.h" #include "../secure/secure.h" int aq_router(AppServerPtr serverPtr, NetMessagePtr ptr,UserPtr uptr){ if(serverPtr == NULL){ aq_e...
[ "wangqingcaoai@sina.com" ]
wangqingcaoai@sina.com
fc54bb8de21ab8edf8d576572be8fe69681e2343
976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f
/source/lab/engine/code/qcommon/extr_common.c_Com_InitZoneMemory.c
4e74fc3d5f88ce3797c4689c85f741f5af7d7bc4
[]
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,726
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
084f8d294bef6aa570484d9598cf3ad1b7315d13
bddb6295ccbd01be9f1b8d7adc4814abcc1dad6c
/task-2/tsig.c
869dce15bba8eb2e2f3f20556198776b686e4de1
[ "MIT" ]
permissive
andreyuhai/EOPSY
4512ec1030fe07fa5a63bda5ecd00703fb9f2d2f
1d29bc5130e8b035e5bc18a463b69dc0c6489f02
refs/heads/main
2023-04-25T07:05:17.629229
2021-05-11T22:38:09
2021-05-11T22:38:09
352,982,192
0
0
null
null
null
null
UTF-8
C
false
false
3,265
c
#include <signal.h> #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/wait.h> #include <unistd.h> int INTERRUPT_FLAG = 0; int NUM_CHILD = 5; int WITHOUT_SIGNALS = 1; void child_do(); void send_signal_to_multiple(pid_t* pids, int pids_count, int signal); void custom_sigint_handler(); int mai...
[ "burakaymakci@gmail.com" ]
burakaymakci@gmail.com
d6a5a73b0f12a5784bb3c1f801808cf880ccb3d3
dd1bd2cd63c6025dd83df8ccb556845db4957995
/Work_Products/Reference/STM32Cube_FW_F7_V1.3.0/Projects/STM32756G_EVAL/Examples/RTC/RTC_Tamper/Inc/stm32f7xx_it.h
b4af7f2180922a54269714c8791851ff94b0fa43
[ "BSD-2-Clause" ]
permissive
snedan/mso
ea9ec2b800e1faca0224d2d7ceef12931cd7ed72
c9a4bd7a1b79611746a98b9e37194c31e2a5cf64
refs/heads/master
2021-01-10T03:34:44.532201
2016-01-03T07:23:42
2016-01-03T07:23:42
48,263,982
0
0
null
null
null
null
UTF-8
C
false
false
3,101
h
/** ****************************************************************************** * @file RTC/RTC_Tamper/Inc/stm32f7xx_it.h * @author MCD Application Team * @version V1.0.2 * @date 18-November-2015 * @brief This file contains the headers of the interrupt handlers. *****************************...
[ "ddmukundan@gmail.com" ]
ddmukundan@gmail.com
7c1b3644d40c70f02ac84589a7941f1dc76b0b71
7e278721bde7640eae56ccd351ab0da92abed873
/asp3_Rp1/asp3Original1/OBJ/kernel_cfg.c
d0b53d947262f03362f8644cdad43b67f1dd6e31
[]
no_license
thtaka19/RasPaiPrg1
7b350341c4b3ac491d6ac7e4ed8be0d77a743336
610fc5e81a5f490a592aef8d04ee1e88f6c10ae2
refs/heads/master
2022-02-24T09:20:25.473506
2022-02-11T16:46:36
2022-02-11T16:46:36
197,015,342
0
0
null
null
null
null
UTF-8
C
false
false
15,327
c
/* kernel_cfg.c */ #include "kernel/kernel_int.h" #include "kernel_cfg.h" #if !(TKERNEL_PRID == 0x0007U && (TKERNEL_PRVER & 0xf000U) == 0x3000U) #error The kernel does not match this configuration file. #endif /* * Include Directives */ #include "target_timer.h" #include "tTask_tecsgen.h" #include "tISR_tecsgen.h...
[ "toshi@DynaBook1.localdomain" ]
toshi@DynaBook1.localdomain
5fae9e8b3b0d58f552511511e88a7c81f481467e
bfe533a84a08f615dc0b0aaf795ef80beb153105
/mymath.h
3fe9c00187f930e14354a0c3a11f17c76c6ddde3
[]
no_license
ilya2smirnov/server
1efaf3fa9d8edd95df8c6b9e16a6509ae40cbb03
8b3801327a16dcfb43267edf5a7b8e71b0c4731d
refs/heads/master
2020-03-24T15:18:55.131839
2018-07-29T18:53:01
2018-07-29T18:53:01
142,786,265
0
0
null
null
null
null
UTF-8
C
false
false
78
h
#ifndef MYMATH_H #define MYMATH_H void calc(char *buff); #endif // MYMATH_H
[ "ilya2smirnov@yandex.ru" ]
ilya2smirnov@yandex.ru
9cc0ed29e2fc503345a800fc8a7032a2acfaa779
a57b1c443706625a681f8538cc9d0cfce281946d
/include-xpl/xpl_quaternion.h
c824345e865a3d1878d58855db57d954b02e5d39
[]
no_license
justinbowes/ld26-ultrapew
d2af0d500536307db3007f4fb0ecaffacaf41eb8
e956d84cfe7fab3eebae6df90fa82487f6040a95
refs/heads/master
2021-07-05T17:30:19.283393
2017-09-29T01:41:14
2017-09-29T01:41:14
9,737,763
0
1
null
null
null
null
UTF-8
C
false
false
8,425
h
// // xpl_quaternion.h // p1 // // Created by Justin Bowes on 2013-02-27. // Copyright (c) 2013 Informi Software Inc. All rights reserved. // #ifndef p1_xpl_quaternion_h #define p1_xpl_quaternion_h typedef union _xq { float data[4]; struct { float x; float y; float z; float w; }; } xquat; #include "xp...
[ "jbowes@informi.ca" ]
jbowes@informi.ca
0188f07e2462f5ba4334314067000210ab353d31
f819bdc8e8e1a08cd655d555a920450d1ed91692
/Upan/thinkpad上文件/U盘文件每次更新ing/towArrayT.C
ca55d1f88fb21ef6f190fca4cd52c54b36971487
[]
no_license
gzci/Rep_chore
ab9d5452daf0d8d8b46dad78326d3ccf918ccefa
c91afc4f4d303c3614a7db4bef8cf7bb1f819f8d
refs/heads/master
2020-03-09T11:35:02.582014
2018-09-09T02:16:32
2018-09-09T02:16:32
null
0
0
null
null
null
null
UTF-8
C
false
false
363
c
#include<stdio.h> #define h 2 #define l 3 int main() { int a[h][l]; int b[l][h]; int i,j; for(i=0;i<h;i++) { for(j=0;j<l;j++) { scanf("%d",&a[i][j]); } } for(i=0;i<h;i++) { for(j=0;j<l;j++) { b[j][i]=a[i][j]; } } for(i=0;i<l;i++) { for(j=0;j<h;j++) { printf("%d ",b[i][j...
[ "695556920@qq.com" ]
695556920@qq.com
f195f5d86013c858e9912841ace25a82f547f96a
a17aad9c2808b314833aa30619ab7cea6d759339
/tools/makeproject/pmake/headers/wallpaper/applicationmk.h
7a88f616057a696685a079ded8a6df28313facd7
[ "MIT" ]
permissive
xubingyue/paper3d
850438db0c3cb257ad65f422ac2069ac0d92c700
a06d056b2ad894a8065b7a996eb7f6ceefec1511
refs/heads/master
2021-01-18T02:34:13.588953
2014-10-17T05:54:01
2014-10-17T05:54:01
null
0
0
null
null
null
null
UTF-8
C
false
false
158
h
const char APPLICATIONMK_STR[] = "APP_PLATFORM := android-9\n" "ifeq ($(USE_STL), 1)\n" " APP_STL := stlport_shared\n" "endif\n" "APP_MODULES := fi\n" "\n" ;
[ "lihw81@gmail.com" ]
lihw81@gmail.com
cc94e331543b83c929f8cd78c3e7ff0e6e09d3a7
5006aec8ae2209b4c89f2547ab6dd66487b2653b
/Project1/src/alarm.h
69a84e4f87f44e1b2f6b78f419515b1036d42e82
[]
no_license
Antero-Gandra/RCOM
27b7f74550a9a3fa6d212530d10e180aaed41b99
5c1f0f5c83f9e93e6e6198c567f811ae24371cc3
refs/heads/master
2020-03-29T19:13:51.539149
2018-12-23T14:53:17
2018-12-23T14:53:17
150,253,462
0
0
null
null
null
null
UTF-8
C
false
false
138
h
#pragma once #define TRUE 1 #define FALSE 0 extern int alarmFired; void alarmHandler(int signal); void setAlarm(); void stopAlarm();
[ "up201607929@fe.up.pt" ]
up201607929@fe.up.pt
cc5611226092b2c1322cdd9dc868668dc4c9561c
8caf214bf366cf319be23c5d6d694b0d8939125f
/FATFS/src/efuns.c
bde6495d80bdab388c8de0b5eb8c62fbe7888758
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
qtxxcj123/MyOnboard-SDL
9a27ca2c889b92681e955af52ee8f7e5444bd74a
6e06424235730e547eec8410cdc7dc963a197c27
refs/heads/master
2020-05-07T12:11:28.420889
2019-04-10T03:08:28
2019-04-10T03:08:28
180,491,564
0
0
null
null
null
null
UTF-8
C
false
false
890
c
#include "efuns.h" #include "stdlib.h" #include "sdio_sdcard.h" #include "stdio.h" FIL fil; UINT bww; FATFS *fs; FRESULT initFatfs(const char *name) { FRESULT res; fs = malloc(sizeof(FATFS)); res = f_mount(fs, "0:", 1); if(res)return res; res = f_open (&fil, name, FA_CREATE_ALWAYS | FA_READ | FA_WR...
[ "44972733+qtxxcj123@users.noreply.github.com" ]
44972733+qtxxcj123@users.noreply.github.com
73f2d05995c895d6e77ac44af393e68dabdf7afd
35f48f8906dab0660c75b247ed23b51449e51e5d
/C_programming_via_Android_cxxDroid_practice/paassing_array_to_function/passing_array_to_function.c
b73fc0c3c4ec1733fb8a33b6159b3606a4e3d59b
[]
no_license
one-exploits/All_C_Programming
3d3f44e2967541202003d2a8078758333e2845f7
8a371cd8ac6df15aacc27b6a01698a1f9e059c48
refs/heads/master
2022-11-23T11:47:04.426933
2020-07-28T12:01:29
2020-07-28T12:01:29
null
0
0
null
null
null
null
UTF-8
C
false
false
132
c
int main(){ int array[]={1,2,2,3,4,4}; int *x[10]; x[0]=array; for(int i=0;i<6;i++) { printf("%d\n",x[0][i]); } }
[ "noreply@github.com" ]
one-exploits.noreply@github.com
7e802fe31f348a20b9b9b5c02460d7e14f438a9f
f0d0a9f275496583442e41f7140bd3350f445ee1
/src/translator/cell_node.h
b2b872e4db490fe9fe2e615d7c90f8e7ac3c8006
[ "BSD-3-Clause" ]
permissive
UIKit0/LaTTe
a2ee36baf51c6d4db8729a2a559b49734bf1b97b
b4a74510d8cbe112e1897db2de75c0ff5ab97a9b
refs/heads/master
2020-12-11T07:18:18.157371
2015-07-23T01:22:24
2015-07-23T01:22:24
null
0
0
null
null
null
null
UTF-8
C
false
false
1,134
h
/* cell_node.h Header file for cell node implementation cell node structure can be used for finding range based datas. Currently, method address look up uses this data structure. Written by: Suhyun Kim <zelo@altair.snu.ac.kr> SeungIl Lee <hacker@altair.snu.ac.kr> Copyright (C) ...
[ "hayoung.lee@ubivelox.com" ]
hayoung.lee@ubivelox.com
33835bda3c14fbc7ebc2e9a3976321ddf0a87a28
417a42980a2698a77a15a6797d9d3a6b9fa26acd
/COMP 206 - Introduction to Software Systems/C/Struct.c
ff89ac6f7865ebc36dd7e315d795138ef8be6b08
[]
no_license
nhthung/mcgill-uni
edab82293dbaf1c770792e5b7c1aa52a5dd012e6
f480eaa44bfb85f95fa0038f6ef263e70a8351ed
refs/heads/master
2022-11-18T08:08:57.972574
2020-05-26T06:09:26
2020-05-26T06:09:26
242,887,879
0
0
null
null
null
null
UTF-8
C
false
false
825
c
#include <stdlib.h> #include <stdio.h> #include <string.h> int main(){ typedef struct{ char * bassist; char * guitarist; } band; band pfloyd; pfloyd.bassist = "Waters"; pfloyd.guitarist = "Gilmour"; printf("%s\n", pfloyd.bassist); char firstname[] = "Roger "; void add_first_name(b...
[ "le.nhthung@gmail.com" ]
le.nhthung@gmail.com
e3cfbe181f1ee5acd2894a70403450b9b873dd51
079f188ceebf48fc7eb7d030b0b5ddb2d2cb6317
/lib/cmd/emotion/emotion_seen.c
6b75723d7aa7aaaf42e9beb46e79886e082c2639
[]
no_license
seikichin/tta
9c71f04111f9f8ddd0905b98ba3a5a2db699c22f
d1c2446737633bbd6557663b2eb598649b677150
refs/heads/master
2023-03-18T03:51:18.964224
2019-09-08T10:00:34
2019-09-08T10:00:34
null
0
0
null
null
null
null
UTF-8
C
false
false
25,970
c
/* ************************************************************************** * These are the emotion functions. Please add new in alphabetical order. * soul_do_cmd(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) * arguments are: 1 - the command argument given by the player * 2 - the default adverb * ...
[ "plingplong@t-online.de" ]
plingplong@t-online.de
cd6ab7888734eb29d3cb44bf59ade428e63dea15
55125a2f765188c2cf3c478d6a90b47604d0aece
/logic/media/ace_src/kiss_fft.c
bcacdc62bb165e1e0b1b2f23beb1d7874c1974ae
[]
no_license
isliulin/x1Indoor
b0f093fe703b613f0c4b712a1bfbc0d27cb4f970
129d26f2154322502b44966a445394540ace8c3f
refs/heads/master
2021-09-05T22:09:22.672206
2018-01-31T08:47:41
2018-01-31T08:47:41
null
0
0
null
null
null
null
UTF-8
C
false
false
14,321
c
#include "ace_config.h" #include "kiss_fft_guts.h" #include "ace_arch.h" #include "os_support.h" /* The guts header contains all the multiplication and addition macros that are defined for fixed or floating point complex numbers. It also delares the kf_ internal functions. */ static void kf_bfly2( kiss_ff...
[ "493336530@qq.com" ]
493336530@qq.com
99ee7a0c0e1fb29505c27a08c691f03f02be486a
5a054b3114974139305d08485b5546577f4a1933
/st_startup/system_stm32f4xx.c
6db2d3663316759806896aae10c37efa5c27e94e
[]
no_license
ktain/rugrat
4f7f9a55a69cff0529e95e9ed00350604635c0b6
b874e319395919d856e277497acf020f5bfffe15
refs/heads/master
2021-01-22T02:35:13.825358
2017-02-06T07:27:12
2017-02-06T07:27:12
81,059,983
0
0
null
null
null
null
WINDOWS-1252
C
false
false
59,629
c
/** ****************************************************************************** * @file system_stm32f4xx.c * @author MCD Application Team * @version V1.8.0 * @date 09-November-2016 * @brief CMSIS Cortex-M4 Device Peripheral Access Layer System Source File. * This file contains the sys...
[ "ktain@ucsd.edu" ]
ktain@ucsd.edu
de256098fc1aaa4f0b3814cfe29c55fd321f27fb
7550905c5efaaec2010ab56adda078d03d6a04e3
/archive/master/v0.0.0-2477-gc3cd0ad/mimas_a7/net/mor1kx/software/include/generated/mem.h
2d1d2c58644da553b773016cfd6b0fb77638e757
[ "MIT", "BSD-2-Clause" ]
permissive
stefanor/HDMI2USB-firmware-prebuilt
9844dd4aaf8ec174417b9a4acbd73f543e0b3bae
2e7dc4e3dcfac6fa947769e4d9477f4aa57a7852
refs/heads/master
2022-01-30T11:04:10.549876
2019-07-21T00:51:32
2019-07-21T00:51:32
115,801,134
0
0
null
2017-12-30T14:14:36
2017-12-30T14:14:36
null
UTF-8
C
false
false
656
h
//-------------------------------------------------------------------------------- // Auto-generated by Migen (562c046) & LiteX (113f7f40) on 2019-07-20 22:09:56 //-------------------------------------------------------------------------------- #ifndef __GENERATED_MEM_H #define __GENERATED_MEM_H #define ROM_BASE 0x000...
[ "github@rivera.za.net" ]
github@rivera.za.net
e35b4cd08cf039fbb2221bec905d638df9c79103
e417e285524a70c3fb343043170296ee58aaf999
/AlgorithmDataStructure/LeetCode/98-ValidBST/valid.c
95b386acd42dc8db09e62b3743c6066ed46a2778
[ "Apache-2.0" ]
permissive
MA806P/ComputerScienceNotes
46a1f5ae09836aa3f3f4106b607e7a248f9c1c7a
819638319d64e22e6ac60e4d128508fb59203350
refs/heads/master
2023-03-16T03:31:06.872903
2021-11-30T15:43:33
2021-11-30T15:43:33
155,314,641
0
0
null
null
null
null
UTF-8
C
false
false
1,249
c
#include <stdio.h> #include <stdlib.h> #include <limits.h> #include <stdbool.h> struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; }; bool helper(struct TreeNode* root, long lower, long upper){ if (root == NULL) { return true; } if (root->val <= lower || root->val >= upper)...
[ "mayp126@126.com" ]
mayp126@126.com
fd74f2dde5f355fc3189c218f6117afd15bc13fc
9bac61cfaa450022f3e0d46c82fcebfec137a475
/Tut5/swap.c
fbfaf1e63da429135bd9887100ef9a1e200a010e
[]
no_license
scyl/COMP1917-16s2
f3e3af02cf4a7351eb2131cf348ad9096be038c0
c61c041473d551a61dd998e07f318bd8687cd69a
refs/heads/master
2020-05-21T16:26:59.243141
2016-10-20T07:20:23
2016-10-20T07:20:23
65,277,395
1
0
null
null
null
null
UTF-8
C
false
false
444
c
#include <stdio.h> #include <stdlib.h> void swap (int* first, int* second); int main(int argc, char* argv[]){ int num1 = 3; int num2 = 5; printf("Before: %d %d\n", num1, num2); swap(&num1, &num2); printf("After : %d %d\n", num1, num2); return EXIT_SUCCESS; } void swap (int* first, int* s...
[ "scyleung@gmail.com" ]
scyleung@gmail.com
8781e7948a8af8966d82c40970e93c2391900710
ebe745219e2c5b6f063667688d404865e1532d01
/GameProg_CIS_4820/a4_Hstances/src/enemy.c
bcf5410a37579009f58bd38c5a4a1a5ea5249441
[]
no_license
Cryofox/Guelph_CurrentSem_Repo
41d84b15c14b1302508140fde2d3cb838b0ad7d3
f7d73e58bef500f7b847404eb417d459f32e6897
refs/heads/master
2018-12-29T14:31:15.599582
2015-04-10T22:11:08
2015-04-10T22:11:08
29,573,413
0
1
null
null
null
null
UTF-8
C
false
false
21,394
c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include "clouds.h" #include "graphics.h" #include "perlin.h" #include "enemy.h" #include <sys/time.h> //Used for Timing Functions extern float gravity_Force; #define TRUE 1 #define FALSE 0 extern void SpawnProjectile( float xForce, fl...
[ "hstances@uoguelph.ca" ]
hstances@uoguelph.ca
762550ffc40e68407fe873c68a5a1195ccff123c
62d551a87aeafb8b9881ff513e40010d569bf498
/src/kplugin/pcap.c
81d865b47a61bbc70baa4fd9dd77acc871daa09a
[]
no_license
robots/wifimon-vita
8f29819b343ec243a55355c48372197a4ecbfa54
a4359efd59081fb92978b8852ca7902879429831
refs/heads/master
2020-06-01T21:09:57.993959
2019-07-10T19:20:25
2019-07-10T19:20:25
190,928,395
7
0
null
null
null
null
UTF-8
C
false
false
1,828
c
#include <vitasdkkern.h> #include <sys/time.h> #include "pcap.h" SceUID pcap_fd = -1; int ksceKernelLibcGettimeofday(struct timeval *ptimeval, void *ptimezone); int pcap_open(char *file) { if (pcap_fd > 0) { pcap_close(); } pcap_fd = ksceIoOpen(file, SCE_O_WRONLY|SCE_O_CREAT|SCE_O_TRUNC, 0777); if (pcap_fd ...
[ "michaldemin@gmail.com" ]
michaldemin@gmail.com
bee86a152c20dadf02a88c9ce644b11cd13cc2a5
7e62f0928681aaaecae7daf360bdd9166299b000
/external/DirectXShaderCompiler/tools/clang/test/Sema/attr-mode-vector-types.c
c4b299ab1539ea7444420b0c150107e7cc20f953
[ "NCSA", "LicenseRef-scancode-unknown-license-reference" ]
permissive
yuri410/rpg
949b001bd0aec47e2a046421da0ff2a1db62ce34
266282ed8cfc7cd82e8c853f6f01706903c24628
refs/heads/master
2020-08-03T09:39:42.253100
2020-06-16T15:38:03
2020-06-16T15:38:03
211,698,323
0
0
null
null
null
null
UTF-8
C
false
false
1,779
c
// RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-unknown-linux-gnu %s // Correct cases. typedef int __attribute__((mode(byte))) __attribute__((vector_size(256))) vec_t1; typedef int __attribute__((mode(QI))) __attribute__((vector_size(256))) vec_t2; typedef int __attribute__((mode(SI))) __attribute__((vect...
[ "yuri410@users.noreply.github.com" ]
yuri410@users.noreply.github.com
b1281337e7783cda62bb42e0901f7e3690c04047
57839b04142af9a6bb1bf36f9c28b903904ba05a
/hoedown/src/html_blocks.c
512e56791e4e75f020bad0e8d7f5b73c272f0680
[]
no_license
wutaosamuel/myTest
3f596a36fe8f5f0726d501a8793557dc00cf821c
52e1aec12c5ef28282265f3235bff9cf19a6da6c
refs/heads/master
2023-05-14T02:04:10.132923
2022-08-09T08:08:18
2022-08-09T08:08:18
241,814,824
0
0
null
2023-05-08T02:19:23
2020-02-20T06:55:46
C
UTF-8
C
false
false
8,755
c
/* ANSI-C code produced by gperf version 3.0.3 */ /* Command-line: gperf -L ANSI-C -N hoedown_find_block_tag -c -C -E -S 1 --ignore-case -m100 html_block_names.gperf */ /* Computed positions: -k'1-2' */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ && ('%' == 37) && ('&' == 38) && ('\'' ...
[ "497863986@qq.com" ]
497863986@qq.com
543a97349195f3ceeca0680a616c8ced8640cf1b
51635684d03e47ebad12b8872ff469b83f36aa52
/external/gcc-12.1.0/gcc/testsuite/gcc.dg/pr97317.c
f07327ac9a2a89f4c681ffc3b6a4ab7c0f1ea4d8
[ "LGPL-2.1-only", "GPL-3.0-only", "GCC-exception-3.1", "GPL-2.0-only", "LGPL-3.0-only", "LGPL-2.0-or-later", "FSFAP", "Zlib", "LicenseRef-scancode-public-domain" ]
permissive
zhmu/ananas
8fb48ddfe3582f85ff39184fc7a3c58725fe731a
30850c1639f03bccbfb2f2b03361792cc8fae52e
refs/heads/master
2022-06-25T10:44:46.256604
2022-06-12T17:04:40
2022-06-12T17:04:40
30,108,381
59
8
Zlib
2021-09-26T17:30:30
2015-01-31T09:44:33
C
UTF-8
C
false
false
152
c
/* { dg-do compile } */ /* { dg-options "-O2" } */ struct a { unsigned c : 17; }; struct a b; int d(void) { short e = b.c; return e ? 0 : b.c; }
[ "rink@rink.nu" ]
rink@rink.nu
4a56aa5b117c2f6f0c3fa1e9fb7f1ebcab9eaa1d
b3298840fe152b854cd50603f273fa56739d7431
/machine.c
5a4596b0457b4c2e568d82630f1aed97b295383d
[]
no_license
jpraher/ordlog
e8e1aa5674eeaae6bc77a35d6464e4f834f8bb41
36c33e80cf690332ce9166a3f73379f8129f2853
refs/heads/master
2016-09-09T23:25:57.742801
2013-04-17T22:40:16
2013-04-17T22:40:16
null
0
0
null
null
null
null
UTF-8
C
false
false
6,454
c
#include <stdio.h> #include <assert.h> #include <string.h> typedef unsigned int word_t; typedef signed int sword_t; typedef unsigned char byte_t; enum InstrKind { INSTR_CTRL = 0, INSTR_MEM = 1, INSTR_TEST = 2, INSTR_ARITH = 3 }; enum ArithType { ADD = 0, SUB = 1, MUL = 2, ...
[ "jakob@praher.info" ]
jakob@praher.info
337b2640e32a7f624d6a91aca0f91c5a745a4514
363cbc43dad2f8a3cb08ca343b95c1d08f6c60c6
/analysis/mva/applyMVA.C
6ea413776d1133a8f735b798cf8915a74edaec05
[]
no_license
DebabrataBhowmik/MonoHiggsToGG
45af4363928b48d51ae50210a18a1bb19eb909c5
b22984b06d3b1f767dcf15796c66f07581bf39f0
refs/heads/master
2022-01-26T02:30:39.866888
2019-04-02T09:50:26
2019-04-02T09:50:26
179,046,566
0
1
null
null
null
null
UTF-8
C
false
false
5,062
c
#include "TROOT.h" void applyMVA(TString path, TString mva, TString addname, Int_t opt, TString sample) { // --- input file TString filepath = "/afs/cern.ch/work/m/mzientek/public/25ns_v80X_MVA/"; TString name = TString::Format("%s_skim_woVetos",sample.Data()); TString model = "BARY"; TFile* data = new TFi...
[ "mez34@cornell.edu" ]
mez34@cornell.edu
9a615d4ef06d1ec98b5dc030160b4a431cd631fb
66862c422fda8b0de8c4a6f9d24eced028805283
/cmake-3.17.5/Utilities/cmlibarchive/libarchive/archive_write_set_format_ar.c
50305ccbeda77ada1c134678e15a50c2de7518f5
[ "BSD-3-Clause", "MIT", "LicenseRef-scancode-bsd-unchanged", "LicenseRef-scancode-public-domain" ]
permissive
zhh2005757/slambook2_in_Docker
57ed4af958b730e6f767cd202717e28144107cdb
f0e71327d196cdad3b3c10d96eacdf95240d528b
refs/heads/main
2023-09-01T03:26:37.542232
2021-10-27T11:45:47
2021-10-27T11:45:47
416,666,234
17
6
MIT
2021-10-13T09:51:00
2021-10-13T09:12:15
null
UTF-8
C
false
false
14,301
c
/*- * Copyright (c) 2007 Kai Wang * Copyright (c) 2007 Tim Kientzle * 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 *...
[ "594353397@qq.com" ]
594353397@qq.com
745beef245cad621bab98c56e63af02c4a0b6f6e
dbf9f9bc71bbf06c3d39c105acc6db4a6f0308d0
/Development/Src/LibUV/src/win/thread.c
031b2cea60ab429b9e49ed4f6bdac6cd884d1bc5
[]
no_license
gamemake/sail
75b6daaa545aba4f95c32392ca6596823834a4d7
f15f5e22866f9c2331805d943159b7928d75009a
refs/heads/master
2021-01-01T05:10:15.978326
2016-05-23T10:12:57
2016-05-23T10:12:57
59,472,365
0
0
null
null
null
null
UTF-8
C
false
false
20,675
c
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the *...
[ "gamemake@gmail.com" ]
gamemake@gmail.com
ddb5160f0fe3010e91a4173d3847c6071cc9bb47
df9739357aa447e47970dff89f3ce646da0a32a9
/src/git_version.h
ab74db5b7ec270b9ab03d78cb5cb86352e353577
[ "Apache-2.0", "BSD-3-Clause" ]
permissive
taolizao/SodaRMS
513f47e892d73d5fa4267467fbae195006df3757
f3a0aef466e9c804f09f850185046425e45d8eba
refs/heads/master
2020-04-26T18:00:26.628719
2019-05-08T03:33:58
2019-05-08T03:33:58
173,731,615
0
0
null
null
null
null
UTF-8
C
false
false
63
h
#define COMMITVER "V_ec32f579b36615714486f55dc76185bdfb51bbc2"
[ "ZHANGJIAN10@kingsoft.com" ]
ZHANGJIAN10@kingsoft.com
29745d1cf25beee7e27479daaf8e2a7fd6dee48e
16a76ee66d9b2f59c9beee4a4a0e104ce347e32a
/from_internet/asmutils/rc6crypt/ia32_elf/by_snowman.c
62de5f0984910b2d760c7e770b71e09a800b680a
[]
no_license
rfalke/decompiler-subjects
4cee3263fa9116285b4bc4b6373efd2e4efa925f
7187fa93b285c32325826eecd0128e907a28809b
refs/heads/master
2023-08-10T08:24:27.198393
2023-07-28T19:44:41
2023-07-28T19:44:41
3,725,678
41
12
null
2023-03-15T16:14:41
2012-03-15T06:01:36
null
UTF-8
C
false
false
41,548
c
struct s0 { void* f0; signed char[109] pad110; unsigned char f6e; signed char[4] pad115; unsigned char f73; }; void fun_80487a5(); void fun_80487fc(uint32_t ecx); uint32_t fun_8048826(); int32_t g8055041; int32_t g8055019; int32_t g8055045; int32_t g805501d; int32_t g8055049; int32_t g8055...
[ "i-git-stone@rf.risimo.net" ]
i-git-stone@rf.risimo.net
066187a219527414fcbb542668518438cf31bee7
88ae8695987ada722184307301e221e1ba3cc2fa
/third_party/weston/src/clients/simple-shm.c
90892c87fe1ea82d2498c06e332d0a60a9103b12
[ "BSD-3-Clause", "Apache-2.0", "LGPL-2.0-or-later", "MIT", "GPL-1.0-or-later", "LicenseRef-scancode-unknown-license-reference" ]
permissive
iridium-browser/iridium-browser
71d9c5ff76e014e6900b825f67389ab0ccd01329
5ee297f53dc7f8e70183031cff62f37b0f19d25f
refs/heads/master
2023-08-03T16:44:16.844552
2023-07-20T15:17:00
2023-07-23T16:09:30
220,016,632
341
40
BSD-3-Clause
2021-08-13T13:54:45
2019-11-06T14:32:31
null
UTF-8
C
false
false
13,785
c
/* * Copyright © 2011 Benjamin Franzke * Copyright © 2010 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the ri...
[ "jengelh@inai.de" ]
jengelh@inai.de
58ac01fd1cb2782b801fe676383a93022aef7e86
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function14595/function14595_schedule_14/function14595_schedule_14_wrapper.h
d75549f0b126eb132539a58579236d804eb98837
[]
no_license
IsraMekki/tiramisu_code_generator
8b3f1d63cff62ba9f5242c019058d5a3119184a3
5a259d8e244af452e5301126683fa4320c2047a3
refs/heads/master
2020-04-29T17:27:57.987172
2019-04-23T16:50:32
2019-04-23T16:50:32
176,297,755
1
2
null
null
null
null
UTF-8
C
false
false
522
h
#ifndef HALIDE__generated_function14595_schedule_14_h #define HALIDE__generated_function14595_schedule_14_h #include <tiramisu/utils.h> #ifdef __cplusplus extern "C" { #endif int function14595_schedule_14(halide_buffer_t *buf00, halide_buffer_t *buf01, halide_buffer_t *buf02, halide_buffer_t *buf03, halide_buffer_t ...
[ "ei_mekki@esi.dz" ]
ei_mekki@esi.dz
c15800cf4b92f0363050805c99c5c3a967056870
4fd40563d2fca2ba0b469dc9d20005d2a45692b8
/Builds/AndroidStudio/app/src/main/jni/JuceModules/juce_gui_basics/layout/juce_StretchableLayoutManager.h
e292e3d95ac028c8be13ead462aea36d42b3d684
[]
no_license
haskellstudio/juce-native-navigation
22f83dd467b83809669f242be69c2927f2184ca8
be1fd4af5c771727c6a31507f45bf77e8b519174
refs/heads/master
2020-12-02T21:17:37.882549
2016-08-14T12:48:28
2016-08-14T12:48:28
null
0
0
null
null
null
null
UTF-8
C
false
false
92
h
/Users/adamelemental/dev/juce/modules/juce_gui_basics/layout/juce_StretchableLayoutManager.h
[ "adam@codegarden.co.uk" ]
adam@codegarden.co.uk
323d50cf2a50e66b482d82beb147522a7b7ab19b
f39f030fadf57606c47ee2b4448d8462c210bfc9
/TL.P2P/P2P.Shenron/ShenronModified/server.323d50.c
3042fcb12a6847d5f256c61054ec31036d4fefa4
[]
no_license
bhageena/TL-BOTS
627527fad85f4037092be6e23ca24fd9fccdfb49
623675b562f91d812f6a49a5e3c35e01dc1dae20
refs/heads/master
2020-08-07T20:21:07.391706
2019-10-08T07:29:53
2019-10-08T07:29:53
213,575,851
0
0
null
2019-10-08T07:27:36
2019-10-08T07:27:36
null
UTF-8
C
false
false
18,114
c
#include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <inttypes.h> #include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> #include <unistd.h> #include <time.h> #include <fcntl.h> #include <sys/epoll.h> #include <errno.h> #include <pthread.h> #include <signal.h> #include <arp...
[ "youngthug@youngthug.com" ]
youngthug@youngthug.com
24ce803b8f0bc35745265fde237f2d10544cc583
0fa9b10a84251b3e2483f7b0390aafa79f82ebf3
/Source/Avengers/Inc/control.h
b908c0ca3cada175e6714153f828a10dcc7b8041
[]
no_license
jigeria/Drone
3e44b6955940d1def3a1ebb383f246b94732d226
9a9f35c11e3201ef943e6aea7e5ca62b616afc8f
refs/heads/master
2021-08-24T00:33:16.425013
2017-12-07T08:34:01
2017-12-07T08:34:01
104,755,028
0
0
null
2017-09-25T13:41:38
2017-09-25T13:41:38
null
UTF-8
C
false
false
223
h
#ifndef CONTROL_H #define CONTROL_H #include "stm32f4xx_hal.h" #include "mti.h" #include "sbus.h" #include "flash.h" void init_gain(); void control_cmd(); void controller(); void pid(); extern float pid_output[4]; #endif
[ "gowithdsm@gmail.com" ]
gowithdsm@gmail.com
cee1055ecfe09cee04c181b4e4dedd4aa4973b6c
99bdb3251fecee538e0630f15f6574054dfc1468
/components/utilities/rt-link/inc/rtlink_hw.h
d0a56fe98c6e73c8e73468cfb9a6722bec4804dd
[ "Apache-2.0" ]
permissive
RT-Thread/rt-thread
03a7c52c2aeb1b06a544143b0e803d72f47d1ece
3602f891211904a27dcbd51e5ba72fefce7326b2
refs/heads/master
2023-09-01T04:10:20.295801
2023-08-31T16:20:55
2023-08-31T16:20:55
7,408,108
9,599
5,805
Apache-2.0
2023-09-14T13:37:26
2013-01-02T14:49:21
C
UTF-8
C
false
false
760
h
/* * Copyright (c) 2006-2021, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2021-02-02 xiangxistu the first version * 2021-07-13 Sherman add reconnect API * */ #ifndef __RT_LINK_HW_H__ #define __RT_LINK_HW_H__ #include...
[ "shaopengyu@rt-thread.com" ]
shaopengyu@rt-thread.com
c9b654dafa3451a62918ca84e3026b7908a3a1fa
00af3224663ee2aeba446ee01774e80564b6ddaf
/S07_Ghazaleh_Zehtab/codevision/2/s07_2.c
e8a9afd568bef4546989ddadf14b5e39e6e154f7
[]
no_license
Dhananet/Microcontoller_LAB
45be67e5b33d7bf68bf8d207af4e569a3a0113df
1cbabd696f8b41d6a416e6ef8458c6c017170149
refs/heads/main
2023-03-16T11:42:12.940488
2021-03-03T06:55:22
2021-03-03T06:55:22
null
0
0
null
null
null
null
WINDOWS-1252
C
false
false
6,007
c
/******************************************************* This program was created by the CodeWizardAVR V3.12 Advanced Automatic Program Generator © Copyright 1998-2014 Pavel Haiduc, HP InfoTech s.r.l. http://www.hpinfotech.com Project : Version : Date : 12/8/2020 Author : Company : Comments: ...
[ "noreply@github.com" ]
Dhananet.noreply@github.com
0754d789ab78e3bf8895e5c852f6d2e3ab17ae30
430341f62334f6ad75141535d0ba3e1261bc2049
/Arduino1.6.x/hardware/RBL/RBL_nRF51822/cores/RBL_nRF51822/pin_transform.c
7522d780635c1e5cea6c830909a2e0648ae4dd88
[]
no_license
zoujixing/nRF51_Arduino_S130
95dec25854163a445c3e529847480edd1c796ead
7719752642270a18d46c6bc97be3a1ba215ba08b
refs/heads/master
2016-09-15T23:57:16.751656
2016-03-23T07:11:14
2016-03-23T07:11:14
41,191,686
2
0
null
2016-03-23T07:11:14
2015-08-22T05:05:10
C
UTF-8
C
false
false
3,989
c
/* Copyright (c) 2014 RedBearLab, All rights reserved. This library 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.1 of the License, or (at your option) any later vers...
[ "jixing.zou@redbear.hk" ]
jixing.zou@redbear.hk
1c5ad0479307bba8cfad12d3fdaf75a3d4defab3
dfc91f24dbff11a6d17d3cee0417b7df340c2861
/DesCon/Breadboard.c
9e85227a6780bd590d29ff539b4aefca46044e11
[]
no_license
kangarroo/Design-Construction
b27d78fb65cfbda9999e8f3f124c3f60ece0706f
980eb9008f9addafec0a4053c48fba093c7f9fa2
refs/heads/master
2020-03-28T16:19:26.639082
2018-09-13T18:46:00
2018-09-13T18:46:00
148,682,076
0
0
null
null
null
null
UTF-8
C
false
false
5,353
c
#include "STM32F4xx.h" #include "Breadboard.h" //Initialises J5 pins void J5_Init(void){ RCC->AHB1ENR |= ((1UL << 1) ); /*Turns on clock for GPIO B*/ GPIOB->MODER &= ~((3UL << 2* 4)| (3UL << 2* 5)| (3UL << 2* 7)| (3UL << 2* 8)| (3UL << 2* 15)); GPIOB->MODER |= (...
[ "kma517@york.ac.uk" ]
kma517@york.ac.uk
0af02e14e4522e16b84d5dc6feeceb48163604fa
017a492c3fd7c8a9ca69549b1571dfee19c47384
/cmps012b/lab3/FileReverse.c
a540931e03ae3f4e4775911ac6a26379fc39af5e
[]
no_license
sruthij1/UCSC-Coursework
c20aada39ffa8e253a18b8300b0ac61ef59877c4
4f0d051e9fd60be628d50a05c5caad3feddf14e7
refs/heads/master
2021-01-26T09:15:45.601909
2016-07-21T21:09:29
2016-07-21T21:09:29
null
0
0
null
null
null
null
UTF-8
C
false
false
1,447
c
/* Tim Mertogul * 1331402 * CMPS12B * 07/17/13 * FileReverse Program that reverses the contents of an input file to an output file * FileReverse.java */ #include<stdio.h> #include<stdlib.h> #include<string.h> void stringReverse(char* s){ FILE* out; int i = 0; int j = strlen(s)-1; char temp[256]; whil...
[ "tmertogu@ucsc.edu" ]
tmertogu@ucsc.edu
f49f74f5d8cfc32abd8c9b1ee2ed538aa1f12296
2f0ebc9e6215d903fd9d86919979fa0b3aff3ac4
/utils.c
2cf393c53e2b02236532e5c3c94f05b515058a04
[]
no_license
harshadesai/wiced-driver
866e45fad1b2a2d2663c975ace4f553ef79dd1f8
2f695a66341cab7848d475fbee30cc0ff7e5e0da
refs/heads/master
2021-10-27T21:01:20.933999
2019-04-19T17:26:37
2019-04-19T17:26:37
null
0
0
null
null
null
null
UTF-8
C
false
false
2,179
c
/* * Copyright (c) 2016, Ari Suutari <ari@stonepile.fi>. * 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 * ...
[ "ari@stonepile.fi" ]
ari@stonepile.fi