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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6256e6bdbb616859ca24e3d9dad12b2aef14dc54 | 302fa41660b6d912eb3371423165c294d4e86f32 | /components/hilink_hislip/inc/hilink_module_op.h | 112967be12f8ef4604173f62f78351a1fe7c981b | [
"BSD-3-Clause"
] | permissive | developer2324/LiteOS_Lab | d92a31ade89236fd2e7f8769715d3df91c6d2c8b | a92c64d3c1b5c16dd0eab68ee09f3b4412ff6b24 | refs/heads/master | 2020-04-11T06:56:04.950776 | 2019-03-15T06:19:36 | 2019-03-15T06:19:36 | 161,596,069 | 0 | 0 | NOASSERTION | 2019-03-15T06:19:37 | 2018-12-13T06:47:37 | C | UTF-8 | C | false | false | 7,919 | h | #ifndef _HILINK_MODULE_OP_H
#define _HILINK_MODULE_OP_H
#ifdef __cplusplus
extern "C" {
#endif
#define HISLIP_ACK_CMD (0x3F)
/* cmds */
#define HLK_CMD_DEVCTL_WM 0x01 /* device control wifi module change work mode */
#define HLK_CMD_DEVCTL_RB 0x02 /* device control wifi module reb... | [
"baikalhu@foxmail.com"
] | baikalhu@foxmail.com |
2cbff6f2df4dc2d463afaccb01e045a62b68a572 | c7b111cd1a98f67286b856db2e039c2a6b24130d | /src/lib/libc/printf.c | e7345a3c7ccf9177316d95502fd53835dbc37ca2 | [] | no_license | strnk/stage3 | 50beb675fe555ee00bc93c8e8c13a1d8ab373c1b | a7164180720f6cecede280ab46b7cd01d1121831 | refs/heads/master | 2021-01-10T03:31:34.434576 | 2012-08-27T09:24:59 | 2012-08-27T09:24:59 | 36,353,393 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 364 | c | #include <stdio.h>
#define BUFFER_SIZE 256
/* TODO: cleaner version ... :-)
*/
int
printf(const char *format, ...)
{
int len;
char buff[BUFFER_SIZE];
char *p;
va_list ap;
va_start(ap, format);
len = vsnprintf(buff, BUFFER_SIZE, format, ap);
va_end(ap);
for (p = buff; *p != 0; p... | [
"c.huriaux@gmail.com"
] | c.huriaux@gmail.com |
b53ce99bd63f0b9a288b2246fca712512cc05b9d | 005a65e533d390946a2c27905e8ea5a9648d446d | /0x0C-more_malloc_free/100-realloc.c | 6082a7a6bdbd9e2759504f926517099c0aa6002b | [] | no_license | YosriGFX/holbertonschool-low_level_programming | 83c2b80e4d5f4a4ae13f94c0962871fb0915021d | 5e370e6b4d719e31bce5b4b1c7ada63cd9d93dcc | refs/heads/master | 2020-07-28T00:57:48.168215 | 2020-07-05T15:01:53 | 2020-07-05T15:01:53 | 209,261,648 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 541 | c | #include "holberton.h"
#include <stdlib.h>
/**
* _realloc - reallocates a memory block
* @ptr: void pointer
* @old_size: unsigned int
* @new_size: unsigned int
* Return: pointer
*/
void *_realloc(void *ptr, unsigned int old_size, unsigned int new_size)
{
char *a, *b;
unsigned int n = 0;
if (new_size == old_size)
... | [
"1111@holbertonschool.com"
] | 1111@holbertonschool.com |
00c9664f24e1eea85717f89577ad6f9a82b96451 | c729f3499d1afa4ede907a8a63d3e5e8044afb99 | /08-Otros/Ej_76.c | 2ca89fcf05cff962b8d552f520b56055c93e4236 | [] | no_license | pslencinas/Ejercicios-Info-I | d97f0966ee3728c5c9679ebdc7b357dcf88b0236 | 2888c423953e1ee1397dbede3061f34001956c13 | refs/heads/master | 2022-06-22T15:25:14.424292 | 2022-06-14T18:42:14 | 2022-06-14T18:42:14 | 126,054,442 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,009 | c | #include<string.h>
#include<stdio.h>
#include<stdlib.h>
#define fila 5
#define col 10
int main(void)
{
char MATRIZ[fila][col];
int i=0, k=0, flag=0;
char L;
//se ingresa la matriz
for(i=0; i<fila ;i++)
{
printf("ingrese la palabra: ");
gets( MATRIZ[i]);
}
//se pide... | [
"pslencinas@gmail.com"
] | pslencinas@gmail.com |
04753e9bc2b6c861718dcc5b4cfd0012b3b0dca4 | 6727a8d28cbf53bc9d4108a325588cf2ecdedce7 | /0x01-variables_if_else_while/5-print_numbers.c | 946e061215ae20d362c03356d16343e1f7f9b189 | [] | no_license | waffle52/holbertonschool-low_level_programming | afbb62e64bed15932e9ce68c552a187f1e1f398b | 968df18334f3c4e1a815ed858cfc4705b8b3bc4e | refs/heads/master | 2020-07-28T12:50:29.153225 | 2020-07-09T07:53:51 | 2020-07-09T07:53:51 | 209,415,983 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 227 | c | #include "stdio.h"
/**
* main - Entry point
* Description: loops through numbers 1 to 9)?
* Return: Always 0 (Success)
*/
int main(void)
{
int i = 0;
while (i < 10)
{
printf("%i", i);
i++;
}
printf("\n");
return (0);
}
| [
"asuka9767@protonmail.com"
] | asuka9767@protonmail.com |
77966bfa214e10370cf3fcb562be5442acac1924 | f3eed0234b4d0ad2bbb2abd700cf1e2c7a0e8a1d | /AKWF-c/AKWF_eguitar/AKWF_eguitar_0009.h | 2ff1226eeb5d455337d2abd5a0bbcfd245bb053b | [
"CC0-1.0"
] | permissive | KristofferKarlAxelEkstrand/AKWF-FREE | b2defa1a2d389d309be6dd2e9f968923daf80d1b | cf8171df36e9fec25416b5f568b72a6e2cb69194 | refs/heads/master | 2023-07-23T18:22:36.939705 | 2023-07-10T17:14:40 | 2023-07-10T17:14:40 | 145,817,187 | 359 | 59 | CC0-1.0 | 2023-07-10T17:14:41 | 2018-08-23T07:26:56 | null | UTF-8 | C | false | false | 4,688 | h | /* Adventure Kid Waveforms (AKWF) converted for use with Teensy Audio Library
*
* Adventure Kid Waveforms(AKWF) Open waveforms library
* https://www.adventurekid.se/akrt/waveforms/adventure-kid-waveforms/
*
* This code is in the public domain, CC0 1.0 Universal (CC0 1.0)
* https://creativecommons.org/publicdom... | [
"brad.roy@gmail.com"
] | brad.roy@gmail.com |
72bc213b49d71b5f6e6cd8cc1191d6e5bd398599 | ceba3d212076d1a739b4ce84b0b0f77428149fff | /PurleyPlatPkg/Library/FpgaPlatformHooksLib/FpgaPlatformHooksLib.c | 276f552432356e1b3a8f688c8ee7a4c7f0bf1da6 | [] | no_license | mikeniu/RAIDOOBMODULE | 5489879201d613a26114e832c239c362f527f618 | abf3a08719182c16769d5549db1235e05ec97fc0 | refs/heads/master | 2022-01-08T15:46:35.079861 | 2018-10-05T10:23:22 | 2018-10-05T10:23:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,818 | c | /**
This file contains an 'Intel Peripheral Driver' and is
licensed for Intel CPUs and chipsets under the terms of your
license agreement with Intel or your vendor. This file may
be modified by the user, subject to additional terms of the
license agreement
**/
/**
Copyright (c) 1999 - 2017 Intel Corporatio... | [
"linsundaysnow@gmail.com"
] | linsundaysnow@gmail.com |
154d7b2ca0b15dedd1f0b7bf40bb55f3e708cab6 | 2ed20cbfb44cb6025962f220aeeee56df82ff90e | /projects/sdr_transceiver_ft8/app/upload-to-pskreporter.c | 9f9222065e94b545f429f52bd4f29dd515744abb | [
"MIT"
] | permissive | sdreamodel/red-pitaya-notes | 932bd93c2866dac57cd59df494860b4e652cd0fd | dc1e750998ab9b34d2cfe15540383cb1d41d944d | refs/heads/master | 2021-09-26T00:26:17.589283 | 2018-10-26T13:25:14 | 2018-10-26T13:25:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,121 | c | #include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
#include <netdb.h>
#include <sys/socket.h>
#include <arpa/inet.h>
const char name[] = "report.pskreporter.info";
const char soft[] = "Red Pitaya FT8 TRX 1.0";
int32_t read_int(char **pointer, int32_t *... | [
"pavel-demin@outlook.com"
] | pavel-demin@outlook.com |
649845e0f67136b6d971ff2abfd0347586741047 | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/ThirdParty/OpenSSL/1_0_1s/include/Win32/VS2015/openssl/x509.h | a4911741005e55c047ec9f5173737c236e7a5b29 | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C | false | false | 51,841 | h | /* crypto/x509/x509.h */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and non-co... | [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
f695f4c8ed3b8e8672797505fecd52e9d4e6b1df | 586065d696dbf277763a01525b6197ac15b5fd5b | /04_hashmap/skel/src/task.c | 7aba1ea3b1cff636a0fa4bc4f5d68e0884848029 | [] | no_license | sidereal-sky/Data-Structures | ccef9e3106d0839f0240cd076b9e0b4f019ec114 | ff9f9eea6fb11e992bbbfe144369644c4099cb16 | refs/heads/main | 2023-08-07T23:14:49.266666 | 2021-09-11T14:06:47 | 2021-09-11T14:06:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,811 | c | // problema 315CAa a) si b)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "Hashtable.h"
#include "utils.h"
#define MAX_STRING_SIZE 256
typedef struct product {
char name[MAX_STRING_SIZE];
char categorie[MAX_STRING_SIZE];
float price;
unsigned int sales;
} product;
void
print_produs(struct... | [
"noreply@github.com"
] | sidereal-sky.noreply@github.com |
7ce019d0734cdad047278944dda45955214310d8 | f518a792da9c817103e18c32cbc321e322cee077 | /arr_dvd.c | b637dc209baf1c6236bffe02ad3929aee3a45f54 | [] | no_license | daniel-sckans/cptr212_int_array_tools | 951d2d3004ea7436aef8579791c4e6379f72b476 | edf634c7ddadb7bb5aa5ef98c4b71454d3edf26a | refs/heads/master | 2022-12-24T08:25:58.487316 | 2020-10-05T15:50:40 | 2020-10-05T15:50:40 | 298,707,048 | 0 | 9 | null | 2020-10-05T02:36:29 | 2020-09-26T00:33:26 | C | UTF-8 | C | false | false | 166 | c | #include "iat.h"
int arr_dvd(int* arr, unsigned int arr_len, int divisor) {
for(int i = 0; i < arr_len; i++) {
arr[i] /= divisor;
}
return 0;
} | [
"evan.daniel@sckans.edu"
] | evan.daniel@sckans.edu |
79db0bfdf7f29157f09b56ecd2b795ef7498b46e | a952f30a325a941b245b9abae2de8e1274483b34 | /app/il2212-multi/src_1/cpu_1.c | 9b2a3684d69d12c2d00b9d013712398ef76e895d | [
"LicenseRef-scancode-public-domain"
] | permissive | PengJiaqiao/KTH-IL2202-Embedded-Software | 76d1149ebcc909f8cc624fdea32575eb70df0b26 | b913b381f80e835ca6a31e621f451d867d263cd6 | refs/heads/master | 2020-03-24T17:08:37.714845 | 2018-07-30T08:50:01 | 2018-07-30T08:50:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,081 | c | #include <stdio.h>
#include "system.h"
#include "io.h"
#define FLAG1 SHARED_ONCHIP_BASE //used to indicate if data has been written or not
#define FLAG2 SHARED_ONCHIP_BASE+1 //used to indicate if data has been read or not
#define FLAG3 SHARED_ONCHIP_BASE+2 //used to indicate if data has... | [
"pengjiaqiao@hotmail.com"
] | pengjiaqiao@hotmail.com |
6b17dbbccdeaeb249b93260c7e74605ac8039e08 | 0ada75af9df27e40b2caff45a3b3219ba488285f | /programs/balanced_brackets.c | 5b227e1a0954f2a2385ef96b97069c23ae3bdc51 | [] | no_license | SriSatyaLokesh/programming | 3b3231f20e3549a2fd21b23082450a4e7c2a5c43 | 84ca8fe53fe97155430bee2a441dd533c1ed49fb | refs/heads/master | 2022-03-01T13:12:13.708216 | 2019-11-06T16:39:16 | 2019-11-06T16:39:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,329 | c | #include<stdio.h>
#include<string.h>
#define MAX 1000
typedef char type;
typedef struct {
int size;
int top;
type a[MAX];
}stack;
int isStackFull(const stack *s){
if(s->top==s->size-1)
return 1;
else
return 0;
}
int isStackEmpty(const stack *s){
if(s->top==-1)
return 1;
else
return... | [
"noreply@github.com"
] | SriSatyaLokesh.noreply@github.com |
226ac38a0dabee515b659eec6c1e1061f6531eac | 9357169cfe94fd5f09608ff343c550090f3a91a2 | /okruzhnost/okr.c | 59e47c50d98898d21b24dca21a38ce6d9239763d | [] | no_license | AleksandrKutarin/Task0-and-task1 | 0c0e429ffd3a1413135436cf1da90e2ee072492e | af50c1adbc85127ecc1b4e31f0c23cd67b9a778c | refs/heads/main | 2023-08-02T05:28:51.240847 | 2021-09-16T19:28:19 | 2021-09-16T19:28:19 | 407,275,926 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 157 | c | #include <stdio.h>
#include <math.h>
void main()
{
int r;
float M_PI;
int S;
scanf("%d %0.2f", &r, &M_PI);
S = M_PI * r*r;
printf("%d", S);
} | [
"noreply@github.com"
] | AleksandrKutarin.noreply@github.com |
52a67d12e0c88456f031c7e7e8f61005d5357efa | 15566db4c584cb7a6235b525b8437b944438af9a | /src/graph_layer.c | efc3fdbb63615b5f8ad7159c2ca8a10967d21336 | [] | no_license | Katharine/WeatherWatch | 68501a9fb2bf623e3d43c67bb05b711b61ddda54 | ca4ab8bf377e801711a38f71e6c7c634f58178c5 | refs/heads/master | 2020-07-04T05:55:21.700466 | 2013-05-25T00:07:19 | 2013-05-25T00:07:19 | 10,008,765 | 9 | 4 | null | 2013-06-25T01:18:40 | 2013-05-12T03:33:50 | C | UTF-8 | C | false | false | 5,118 | c | #include "pebble_os.h"
#include "graph_layer.h"
static void graph_layer_draw(Layer* layer, GContext* ctx);
void graph_layer_init(GraphLayer* graph_layer, GRect frame) {
layer_init(&graph_layer->layer, frame);
graph_layer->layer.update_proc = graph_layer_draw;
graph_layer->data = NULL;
graph_layer->data_count = 0;... | [
"katharine@kathar.in"
] | katharine@kathar.in |
819ba82b6e927f29230b4e1425ca7e03bcdf5312 | 6347a7b334c013a72592b3930be35fc88db44c43 | /power1.c | 6213712bda04bc5bdda2b88b60e17e46f68b0332 | [] | no_license | MahaIndhiraJaisri/Gokulapriya.begin | d391ae6bbb1480dde764382184473b6dec728d27 | f524bd6265697132c8a841a8ad77cc395bf388bc | refs/heads/master | 2021-01-24T11:59:24.088736 | 2018-02-20T06:49:26 | 2018-02-20T06:49:26 | 123,113,171 | 0 | 0 | null | 2018-02-27T10:29:42 | 2018-02-27T10:29:42 | null | UTF-8 | C | false | false | 150 | c | #include<iostream.h>
#include<math.h>
void main()
{
int m,n;
printf("enter m,n");
scanf("%d%d",&m,&n);
printf("power on %d^%d is %d",m,n,pow(m,n));
}
| [
"noreply@github.com"
] | MahaIndhiraJaisri.noreply@github.com |
876c7a84036e47bfba057ce04138a5d841df7266 | 49d0403b0eb17fd434f438599281acc61db9e408 | /Poj 2063 Investment/e.c | f6a5998458098bc1c198a271a69c9bb8260c90aa | [] | no_license | francisfsjiang/ACM | 01795c0fd44941ce530e4aa7cfec54ad5f7705f6 | 5506cc5b9c94ca0866f9ee383676638b74ec5475 | refs/heads/master | 2021-05-27T01:02:39.419742 | 2014-02-26T12:45:06 | 2014-02-26T12:45:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,221 | c | #include<stdio.h>
#include<string.h>
int main()
{
freopen("in.in","r",stdin);
freopen("out.out","w",stdout);
int i,j,t,k,orign,year,d,data[12][2],dp[46000],now;
scanf("%d",&t);
while(t--)
{
scanf("%d%d%d",&orign,&year,&d);
for(i=1;i<=d;i++)
{
scanf("%d%d",&dat... | [
"287459525@qq.com"
] | 287459525@qq.com |
5a87a1360c571daa7a13a34b55b91f351f4a2f3f | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/c-litmus-CSEQ/_cs_W+RWC+dmb.sy+dmb.ld+dmb.sy.c | 8ee8ac996358145a4d98320ef3c50b5b7b0aefad | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C | false | false | 28,001 | c | /*
* generated by CSeq [ 0000 / 0000 ]
*
* instance version {}
*
* 2023-06-04 12:04:57
*
* params:
* -i /home/osboxes/llvm_bmc/llvm_bmc/examples/litmus/c/run-scripts/../c-litmus-CSEQ/W+RWC+dmb.sy+dmb.ld+dmb.sy.c,
*
*/
#define __cs_MUTEX_INITIALIZER -1
#define __cs_COND_INITIALIZER -1
#define __cs_... | [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
7d26eaa1b79b55d7c52899389249af1133506df1 | 028f18f3aaf40b04ae5ea42dd9caf4b0df5cfd17 | /Additional Tests/Test147.spl.c | 527c1c514459375b58378991129ee7261778ef0e | [] | no_license | Rooster212/CompilersCoursework | d419b68f819ff743e6df4b38a9979469dc5945b1 | b2d188c3f8ad10fd6af4ca2c48461493ac1fd8f0 | refs/heads/master | 2021-01-22T02:03:38.323678 | 2015-08-07T18:47:46 | 2015-08-07T18:47:46 | 40,375,732 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 172 | c | #include <stdio.h>
/* Test */
int main(void) {
int a;
a = 1;
do {
printf("%d",a);
a = a+1;
} while (a<=0);
printf("\n");
return 0;
}
/* End Program Test */ | [
"jamie.roos@bradyplc.com"
] | jamie.roos@bradyplc.com |
b2d48c82e15b9a36307aa1190b8b7687d947bc2d | 6846c0584b4dc7a4d3bb0180df85ab83a0274848 | /libft/ft_putnbr.c | 9c3a366050fe3328cb19b633702c45b369a67b0c | [] | no_license | runiArnsbjornson/simple_p | 7c2568e194dc788d7a6d68f20824d7bc4228d46a | 5d3c2181e24027ebf2d851861daafedb40f06346 | refs/heads/master | 2021-09-03T01:33:42.428567 | 2018-01-04T16:02:26 | 2018-01-04T16:02:26 | 116,279,016 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,054 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr.c :+: :+: :+: ... | [
"julien.debladi@gmail.com"
] | julien.debladi@gmail.com |
d85e07ba1f26a0e1fbc4eb6ae0ea0172addac456 | 5503d61a0d68525a4134aa27400d284efdfc4b8e | /kni/kni.h | 6264cec1435117b7fe536a705e455fa27c0ce9aa | [] | no_license | makism/kni | 99e3797b84b577502e15012e4d2537023412e9e9 | 995bd6e5833ebbccf69fc8beca8d317d5770f970 | refs/heads/master | 2020-12-24T16:14:50.124901 | 2012-07-15T07:13:05 | 2012-07-15T07:13:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 236 | h | #ifndef KNI_H
#define KNI_H
#include "kni_global.h"
#include "kni_namespace.h"
#include "knigenerator.h"
#include "knicontext.h"
#include "knionicontext.h"
#include "knidepthgenerator.h"
#include "kniimagegenerator.h"
#endif // KNI_H
| [
"makhsm@gmail.com"
] | makhsm@gmail.com |
112a53f12ca0e566c47b12369e9280f7a594e930 | caba67371059aaa591e8d33a0e7ec0586c26b139 | /Classes/FenneX/Custom/SceneName.h | 43ffa158ecf7128734540b2cba8901bbe6e271a4 | [] | no_license | FenneX/FenneXEmptyProject | b9df392d46b22e7b8ae58f1a0b83750b155dbf99 | 1d345821a4616c980b03d2770ac374fa47f0d688 | refs/heads/master | 2021-01-18T21:45:05.807974 | 2018-06-01T09:10:06 | 2018-06-01T09:10:06 | 24,424,322 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 2,016 | h | /****************************************************************************
Copyright (c) 2013-2014 Auticiel SAS
http://www.fennex.org
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 wit... | [
"fradow@gmail.com"
] | fradow@gmail.com |
8fbbaf4b3183fe5ecd79f988dc4fd641f3f3c2b7 | 9cb9d7d5b33bb263fb305770d8dc22eb0ac3ed54 | /src/app_oc/ScadeCode/FindInsertIndexPhySecBlock_PhySecBlockManage.h | f56e0efa0ee6563e159e44119ee51075ec59f27c | [] | no_license | dragdog/test | 2d5066fc7516401c0393739d2fb60e954beef9ce | 3e745da7bc96e9a63f0c8643f7a47812fa3df84d | refs/heads/master | 2022-04-17T02:07:55.460976 | 2020-04-16T10:19:34 | 2020-04-16T10:19:34 | 255,866,950 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,209 | h | /* $********** SCADE Suite KCG 32-bit 6.6 (build i19) ***********
** Command: kcg66.exe -config E:/Work-TCT/6@VBTC_OC/0@SoftwareSource/OCSimualtion20190524/src/app_oc/ScadeCode/config.txt
** Generation date: 2020-01-13T16:36:03
*************************************************************$ */
#ifndef _FindInsertIndexPh... | [
"yulin.chen_cyl@foxmail.com"
] | yulin.chen_cyl@foxmail.com |
34430541ed78fcc14a1d6835738e83fed568caf0 | 5e1527b032091ce18093f29ddc1c1f91aae0ce40 | /csv/csv_file.h | 144362057ceef12a1eae70a3ec0224d259eb5b16 | [
"MIT"
] | permissive | Dasc3er/gestione-magazzino | 0752a383e6785b14bd43b379375b7cbf4fcced7e | d70b3a4fe802389ea5c6ea091a3852b7f3a2d542 | refs/heads/master | 2022-10-23T18:13:34.157463 | 2020-06-16T15:54:16 | 2020-06-16T15:54:16 | 262,530,414 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,784 | h | /**
* @file csv_file.h
* @brief Header per la definizione delle funzionalità su file CSV.
*
* Header che definisce tutte gli struct e le funzioni principali applicabili sui file CSV nel loro complessivo.
*/
#ifndef CSV_FILE_H_
#define CSV_FILE_H_
/**
* Struct dedicato al salvataggio delle informazioni di base ... | [
"Dasc3er@users.noreply.github.com"
] | Dasc3er@users.noreply.github.com |
33a2b62d33ee959b66d4b754994ca13e3f367a0d | 7fb0ba7df3d79f99f85366700d1e43fd412c41ed | /uc_adc/uc_adc.h | c55028b74af16668c6f4cb9511974afb99818f59 | [] | no_license | aranzanflores/SistemasEmbebidos_FreeRTOS | 8a91032d3948e679268b1c5fe26acaba06454022 | 174d0ce608a5568aed9b6e6b2989bc5e9fae0431 | refs/heads/master | 2022-07-19T07:41:47.130609 | 2020-05-29T02:15:31 | 2020-05-29T02:15:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 322 | h | ///*
// * uc_adc.h
// *
// * Created on: May 2, 2020
// * Author: FLL1GA
// */
//
//#ifndef UC_ADC_H_
//#define UC_ADC_H_
//
//#include <stdint.h>
//
//void adc_pin_setup(void);
//void adc_setup( void * init_struct);
//uint16_t adc_read(void);
//float adc_convert_voltage(uint16_t data);
//
//#endif /* UC_ADC_H_ *... | [
"a01633043@itesm.mx"
] | a01633043@itesm.mx |
ffa7bfbd0dafcc27b00303fc47961a4a919dfa3c | 944ea4a2dfa74f06d71e20fb65c798bfe268a3d0 | /Final Handin/Project Code/assembler/coe.c | 055bd39884c3466dc9254a6af57750071da28f48 | [] | no_license | AshitakaLax/3710-Project | 2bdfa49b6b63e88f425a1c97a70718577e35be4b | 51ff473245df2a5211c33b151d7338d10d9e886c | refs/heads/master | 2021-01-21T18:53:12.313937 | 2011-12-18T11:18:12 | 2011-12-18T11:18:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,261 | c | /*
converts a assembled file into a coe file
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define BUFFER_SIZE 100
int main(int argc, char *argv[])
{
char *inFileString, *outFileString;
FILE *inFilePtr, *outFilePtr;
char Rbuff[BUFFER_SIZE + 1];
char Wbuff[BUFFER_SIZE + 1];
if (argc != 3)... | [
"tjlewis@sci.utah.edu"
] | tjlewis@sci.utah.edu |
fdaadea9196d2d174c299614bf709064074a7c73 | 9eb2245869dcc3abd3a28c6064396542869dab60 | /benchspec/CPU/507.cactuBSSN_r/build/build_base_mytest-64.0001/CactusBindings/Functions/CartGrid3D_Functions.c | 8014f477d12bf6be2ce60f9771b8c861929708d9 | [] | no_license | lapnd/CPU2017 | 882b18d50bd88e0a87500484a9d6678143e58582 | 42dac4b76117b1ba4a08e41b54ad9cfd3db50317 | refs/heads/master | 2023-03-23T23:34:58.350363 | 2021-03-24T10:01:03 | 2021-03-24T10:01:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 438 | c | /*@@
@file CartGrid3D_Functions.c
@author Automatically generated by CreateFunctionBindings.pl
@desc
The wrappers for functions provided by thorn CartGrid3D.
@enddesc
@@*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "cctk_Flesh.h"
#include "cctk_WarnLevel.h"
CCT... | [
"abelardojarab@gmail.com"
] | abelardojarab@gmail.com |
ea79b899cec102ec0a40966724328400ebb1cbdf | 0bf99b9f0bcde901b7b5f4e4fea10ecffaf38bd3 | /p1/sample_code/timer/timer.c | 32c76fece6948a9670c44edccd87b56e4f9c1722 | [] | no_license | Josh-L/OS-Kernel | b6b6f37ca93eef036c8123d45f30677560540286 | 254eee2962378216d1f66b1699509c28cec02e67 | refs/heads/master | 2016-09-10T11:09:29.717201 | 2011-07-20T15:35:07 | 2011-07-20T15:35:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,802 | c | /**
* @file: timer.c
* @brief: timer 0 smaple code
* @author: ECE354 Lab Instructors and TAs
* @author: Irene Huang
* @date: 2011/01/04
*/
#include "rtx_inc.h"
#include "dbug.h"
/*
* Global Variables
*/
SINT32 Counter = 0;
/*
* gcc expects this function to exist
*/
int __main( void )
{
return 0;
}
/... | [
"jmlucas@eceLinux1.uwaterloo.ca"
] | jmlucas@eceLinux1.uwaterloo.ca |
a8b25716eefc54db0475dbde6055dcaa1fe8ab8c | af3b9f3b3ddb094f04e7e55926f1534f767d5f44 | /parse.c | 141aab37a7a8abba01edef3545ac34cb28f7cc57 | [] | no_license | PandaCoustik/exam3 | bb4fe29f35f712614db1215c4ad859e91bb313d6 | aee742d2cd089d32ebc69512c4cbf8b20d1bb47a | refs/heads/master | 2022-04-05T22:00:29.292473 | 2019-12-20T11:09:41 | 2019-12-20T11:09:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,571 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* parse.c :+: :+: :+: ... | [
"jpanneau@e2r8p7.42.fr"
] | jpanneau@e2r8p7.42.fr |
bc617caa77f4fe7346cd7c291de05b6cc77de6fc | 399f173e7c80d13e5bdfce8d8c3d27d1d26dad1c | /1062_class/eco_model/HW/C2/Q2.c | d63aca8a0db50f4e2bf5482633c2b248cbf80c51 | [] | no_license | Kazeumi/local_depend | 98032d9ac1d05a664efe70793101acf6cd9f59a5 | 30a398836652f1cab34ef69d059e386d5f3e626e | refs/heads/master | 2022-04-18T09:44:46.861423 | 2020-04-11T05:48:51 | 2020-04-11T05:48:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 141 | c | #include <stdio.h>
int main (void) {
printf("%.1f\t%.1f\t%.1f\n", 1.2, 3.4, 0.5);
printf("%.1f\t%.1f\t%d\n", 3.5, 6.0, -10);
return 0;
} | [
"liaomovie2@gmail.com"
] | liaomovie2@gmail.com |
2be5d25c7a2422998f0612b13ee8d227f5f5faa4 | 42218a8ab13f781758e8c9f71bbdebe188997d07 | /arth.c | 675b578170022adcd772f9981420cc5cb0369534 | [] | no_license | 1703022/linumiz-TASK1 | b3755f48e76497ee4c046186e86deb99200ad0d6 | 19e2ab14c9e4eff9dd8428b2058ccd835d348085 | refs/heads/main | 2023-06-27T05:11:39.376553 | 2021-07-29T08:30:58 | 2021-07-29T08:30:58 | 390,650,853 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 197 | c | #include<stdio.h>
#include "arth.h"
int main()
{
long long int a,b;
printf("enter two numbers for addtion:\n");
scanf("%lld\n%lld",&a,&b);
add(a,b);
sub(a,b);
mul(a,b);
return 0;
}
# linumiz-TASK1
| [
"noreply@github.com"
] | 1703022.noreply@github.com |
a90f132ac94558273c19fb8e73983527d14430de | d118f483d6601ffdbf2d337c4d5f8e2b9585d645 | /components/esp-azure-pnp/azure-iot-sdk-c/umqtt/deps/c-utility/deps/umock-c/tests/umocktypes_bool_ut/umocktypes_bool_mocked.c | 5ba10545d9ee56cf8ddccc78fc6899cd47a66403 | [
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | Azure-Samples/ESP-Samples | 2f62180454432425c36836f3971618fb6fc2a87c | 62ab2aa1a6866f247cb8715c7cca647e06d05fe2 | refs/heads/master | 2021-12-14T15:34:25.930600 | 2021-12-10T23:29:26 | 2021-12-10T23:29:26 | 235,164,690 | 47 | 27 | MIT | 2021-12-10T23:29:27 | 2020-01-20T18:03:51 | C | UTF-8 | C | false | false | 524 | c | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#include <stddef.h>
extern void* mock_malloc(size_t size);
extern void* mock_realloc(void* ptr, size_t size);
extern void mock_free(void* ptr);
#define umockalloc_mal... | [
"ericmitt@corp.microsoft.com"
] | ericmitt@corp.microsoft.com |
ca51138eb9d46c173277f1c8983191e558e58190 | ba72657d57053c4b5427c94886f98aa95ccb5f63 | /numeric/AKWF_1831.h | 84bf9362be1696a47925e9317722d72a64c10891 | [
"CC-BY-3.0"
] | permissive | reverbrick/AKWF_WaveForms | d1ebbc2b35e7c85f558315c0c1cf1ac13e44de16 | ba4819c84c180e437b3d556fe6effd5075b33590 | refs/heads/master | 2021-05-27T00:15:22.063748 | 2014-07-19T00:18:37 | 2014-07-19T00:18:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,967 | h | // Converted by AKWF2Teensy from AKWF_1831.wav.
// AKWF2Teensy - Beerware by Datanoise.net.
// Length: 257
const int16_t AKWF_1831[257] = {
497, 2365, 4229, 6080, 7910, 9709, 11473, 13189, 14855,
16457, 17994, 19459, 20850, 22166, 23406, 24570, 25658, 26667, 27599,
28450, 29223, 29917, 30530, 31068, 31527, 31... | [
"github@ext.no-route.org"
] | github@ext.no-route.org |
4e2defe9b5d0f38231ba77e4328fccd48959a53a | cd8723bc64692a421fad7ed4f00268d3a30beff2 | /Pods/BuildHeaders/XHNewsFramework/XHFountionCommon.h | c00c654a9f386389759f36a037ba2cbced455d3f | [] | no_license | m6830098/USTCApp | 47af20fda2d71fad37aca49977502c0c5d7322d8 | cf28926c2dbeeff4bd9b6f352f64486a094d1e63 | refs/heads/master | 2016-09-09T23:55:26.466233 | 2014-07-05T09:49:58 | 2014-07-05T09:49:58 | 21,271,082 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 101 | h | ../../XHNewsFramework/XHNewsFramework/XHNewsFramework.framework/Versions/A/Headers/XHFountionCommon.h | [
"chenhaoustc@gmail.com"
] | chenhaoustc@gmail.com |
58ef5e6ef9b9b09cae0ef514f85cc1132b1cc3e9 | fcfa39c322ef3c3061e963a0471fffd6191f6627 | /www-df/views/sam.c | a1f977977df7ef90878c28b33580e0ddb95daf92 | [
"MIT"
] | permissive | algermissen/tmtk | 5113e75499e34525c4de58e85e9fba1f0b9d49a1 | 899701f6327cf927752a7eae839dc6b6dd9342d5 | refs/heads/main | 2023-03-07T16:43:55.915427 | 2021-02-14T18:54:03 | 2021-02-14T18:54:03 | 338,872,079 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 37,729 | c |
/*
* $Id$
*
* Copyright (c) 2002 Jan Algermissen
* See the file "COPYING" for copying permission.
*
*/
#include <tmstack.h>
#include <tmmem.h>
#include <tmtrace.h>
#include <tmutil.h>
#include <tmlog.h>
#include <tmtable.h>
#include <tmtopicset.h>
#include <tmparams.h>
#include <tmerror.h>
#include <tmassertio... | [
"algermissen@acm.org"
] | algermissen@acm.org |
b5a6c24ebea8fa47acee26812a60258bc94d7344 | 62f15084b790fd155c7f6de14a2b6c37f9f0e7df | /Lab4/lab4a.c | d473e54af0d15ff756e97618803abdc96c3761c3 | [] | no_license | yuzhongyao/EECS2031N | 63cd537c1394014197fd1588112dc0c8f53f9217 | ff188df73705005062832f9da5b54cfa33753b9b | refs/heads/master | 2022-04-18T09:45:49.897961 | 2020-04-21T07:57:11 | 2020-04-21T07:57:11 | 240,617,472 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,448 | c | /**************************************************
* EECS2031 - Lab 4
* Filename: lab4a.c
* Author: Yao, Yu Zhong
* Email: yao21@my.yorku.ca
* EECS login ID: yao21
*
*
***************************************************/
#include <stdio.h>
#define MAX_SIZE 500
void myStrInput ( char *s );
int myStrCmp( ... | [
"noreply@github.com"
] | yuzhongyao.noreply@github.com |
3acd517f04c9b3e189c193fff4ff21b46309fe3b | f70a06e444cb52c3d6e2edcb737af92e129ba409 | /src/bench_cpu.c | bc74145e67a4e7ad6536059034864b7cd2a9e8a7 | [] | no_license | DDiPuma/Accelerated-AES-Benchmark | 8e35a1e019f5652c7b08aa75cdcb18142487a6cc | 740e8928e73b0a43f5991648028043e40094d534 | refs/heads/master | 2023-03-22T23:34:24.000008 | 2021-03-14T22:08:26 | 2021-03-14T22:08:26 | 307,516,910 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,113 | c | #include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include "include/aes_cpu.h"
#include "include/file_utils.h"
void* encrypt(void* pv_args)
{
thread_args_t* p_args = (thread_args_t*) pv_args;
aes_file_t* p_input = p_args->p_input;
aes_file_t* p_output = p_args->p_output;
key_schedule_t... | [
"dominic.dipuma@rutgers.edu"
] | dominic.dipuma@rutgers.edu |
15ceda78b9a6eae73823bc8fa91c2216aa2390d5 | f83e41c955de6948970fbb1260cfaf6e99dc96d4 | /ising_gen.c | 8c2ad88f79a4b15a87fbda4ca3d9760bf50ce131 | [] | no_license | aaronbrown1988/Msc-Project | 1617db040ffd03b14851dab755f373cde89138ae | 534c799955bf64a800f694d740a3f598a425f9d2 | refs/heads/master | 2019-01-02T02:01:17.102201 | 2011-08-23T14:00:51 | 2011-08-23T14:00:51 | 1,592,456 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,096 | c | #include <stdio.h>
#include "./isinglib2.h"
int main(int argc, char * argv[]) {
double temp = 0;
double field = 0;
double *results;
int steps =0;
long int flips=0;
int blocks=0;
int size=0;
int method;
int dimension = 2;
// double coupling[3] = {-3e-25,-3e-25,-3e-25};
double coupling[4] = {1,1,1, -1};
int t... | [
"A.H.Brown@warwick.ac.uk"
] | A.H.Brown@warwick.ac.uk |
20b5d4574d477479f12582754348b75e04165c46 | 51b9c6f494bd5205a9d3ed646668e5b4d83635f5 | /Art_stm32f10x_hal/board/inc_mb1616dev6/app_eeprom_24xx.c | f813f5b3e5819daee3acc9e522435c85a077b61d | [] | no_license | Xcping2013/2020_mcu-fw | 06b8273c76517b1045cfa9020efb820a849dc09c | 46b26b22147579d69fdf1776bf24ce375b2a1bc6 | refs/heads/master | 2023-03-19T07:34:09.321783 | 2021-03-09T05:42:36 | 2021-03-09T05:42:36 | 273,529,059 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 3,567 | c |
#include "app_eeprom_24xx.h"
#if 1
#define DBG_ENABLE 1
#if ( DBG_ENABLE )
#define DEG_TRACE rt_kprintf
#else
#define DEG_TRACE(...)
#endif
#endif
//
//at24cxx_t at24c256=
//{
// {0},
// {PC_15,PC_14},
// 0xA0,
//};
//at24cxx_t at24c256=
//{
// {0},
// {PC_14,PC_15},
// 0xA2,
//};
/*****************... | [
"canping.xie@incubecn.com"
] | canping.xie@incubecn.com |
ffa23e51cb1bc8951c6d021de335165e9f4a7809 | e67f719ddf7a3ae3c9323f6ba71199ee2720465a | /cat/cat.c | 55b319c0bf23945f6dd5f2ee71694fb9eac80316 | [] | no_license | knah/ifmo_os | 42b3b079e1ad4f4bcbc4ce2e470dd5fe924ed351 | 07a99c6c675aa3070dc347b015fbe14848d54d87 | refs/heads/master | 2020-05-17T08:57:47.408402 | 2015-06-05T17:31:00 | 2015-06-05T17:31:00 | 31,891,757 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 330 | c | #include <helpers.h>
#include <stdio.h>
#define BUF_SIZE 4096
int main() {
char buf[BUF_SIZE];
while(1) {
ssize_t count = read_(STDIN_FILENO, buf, BUF_SIZE);
if(count == -1)
return 1;
if(count == 0)
return 0;
ssize_t write_rs = write_(STDOUT_FILENO, buf, count);
if(write_rs == -1)
return 2;
}
r... | [
"kna.rus@gmail.com"
] | kna.rus@gmail.com |
a6927d9c050a4ef63222801d9bbf5bbe44e8004e | fa2277be29c957340c9b54a3bea9ed65906b92e5 | /Pods/Sentry/Sources/SentryCrash/Recording/Tools/SentryCrashCPU_arm64.c | 115206c1845b2613138356706521323daf5dd150 | [
"MIT",
"Unlicense"
] | permissive | utsengar/HeadsDown | 09c8ae332fd2c9de671e1068b2b8eed053b0eb0a | 54923001c2518144013e352f1ae798fc5c3e00e1 | refs/heads/master | 2022-11-13T21:30:40.199204 | 2020-07-04T18:51:20 | 2020-07-04T18:51:20 | 261,898,855 | 18 | 2 | Unlicense | 2020-07-04T18:51:21 | 2020-05-06T23:09:29 | Swift | UTF-8 | C | false | false | 5,168 | c | //
// SentryCrashCPU_arm64_Apple.c
//
// Created by Karl Stenerud on 2013-09-29.
//
// Copyright (c) 2012 Karl Stenerud. 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 S... | [
"noreply@github.com"
] | utsengar.noreply@github.com |
35cf404686d0d5ed4c93ef9a85a81aad9d5b6f9d | 04cb14c154008bca5b1f859726c17b5645fa776f | /time_print.c | f2ac551dd00a22f6feaaf147348da85a631e5c9e | [] | no_license | scass21/Philosophers | 38f9f55dc2cfc8d3d360cd4d49cd595cd52cb5cc | db8028e44000dd7fc4e3bd7a1632b914a465fd76 | refs/heads/main | 2023-09-03T06:43:47.353141 | 2021-11-18T14:35:01 | 2021-11-18T14:35:01 | 429,455,957 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 618 | c | #include "philo.h"
void print_status(long time, int num, char *msg, t_philo *philo)
{
pthread_mutex_lock(&philo->all->print_status);
if (philo->all->check_death == 0)
printf("%ld %d %s", time, num, msg);
pthread_mutex_unlock(&philo->all->print_status);
}
long get_time(long start)
{
struct timeval tv;
long cu... | [
"noreply@github.com"
] | scass21.noreply@github.com |
0267f3dd927674adc50d8bddc4b08a746c2586d1 | a10343853ad7199212f934328a8733fca07f1b17 | /lwip-1.4.1/netconf.c | 0e3a76e2273216c1d2e22a379758146957c453f2 | [] | no_license | dave0532/NUC972-freeRTOS-LWIP | b22293dcb07636c9d346866070a93ac529f5b5fb | 727238fe61704ab56ccc989bd61d9baf3d1fd00a | refs/heads/master | 2020-06-24T10:01:10.424976 | 2019-03-08T10:16:55 | 2019-03-08T10:16:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,612 | c | /**
******************************************************************************
* @file netconf.c
* @author MCD Application Team
* @version V1.1.0
* @date 07-October-2011
* @brief Network connection configuration
******************************************************************************
... | [
"lmx@eanttech.com"
] | lmx@eanttech.com |
88b3aaf6caabcae8eb047ab9c7d7e2e82d5f1d28 | abffabf2dff730142c24a63dd3792e2f94de5840 | /include/project1.c | 86f1edd0cdd8adf433fc055aee52d6d582942eba | [
"MIT"
] | permissive | BugrahanOzturk/ESP8266-STM32F4Disc-Interface | 394aade9478f1640630705b6f2ac2086eefae7cd | 7b48e0b07a2aa44d11c397cfb0b6ab572a8b2c0d | refs/heads/master | 2022-12-19T03:06:21.218698 | 2020-09-17T17:58:24 | 2020-09-17T17:58:24 | 275,448,425 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,005 | c | /*
* author: Bugrahan OZTURK
* description: STM32F4 - Useful Function Definitions for STM32F4Disc: Completely written from scratch.
* reference document: RM0090
*/
/*************************************************
* #INCLUDES
*************************************************/
#include "project1.h"
#include "mai... | [
"sbozturk97@gmail.com"
] | sbozturk97@gmail.com |
7d25c757cc947a6bdd8af1224713f58823f61726 | 9a7ed0e1e01ba349dcb86eff115fca95a0ae820d | /paranthesis_matching_Extra.c | e3fee6a8afee2edc8f90a90479f91d0ea0c11754 | [
"Apache-2.0"
] | permissive | prakashjha18/DataStructures | e268bd94c5f9eb573381f34490afc7ce91790538 | 9f915ba287f7beb8b9666f96ff6ec5f4222fb079 | refs/heads/master | 2020-03-28T03:57:46.498757 | 2017-11-05T21:13:01 | 2017-11-05T21:13:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,294 | c | #include<stdio.h>
#include<ctype.h>
#define MS 100
int top=-1,i;
char e;
void push(char);
char pop();
char stack[MS];
char s[MS];
int ismatch(char,char);
int main()
{
printf("Enter the expression : ");
gets(s);
for(i=0;s[i]!='\0';i++)
{
if(s[i]=='{'||s[i]=='('||s[i]=='[')
{
p... | [
"UjalaJha"
] | UjalaJha |
1aa87e62994732a702452b8a2a8e72f24c8a5d00 | 0592c9e4cfbb77a0755aff6f0c798d9fe31f6ff4 | /Src/common/math/ap_fusai_levy/QDiscreteAsian.c | 5dd1a7538f123d823e31b81b0a4a9bc80e78c4be | [] | no_license | FinancialEngineerLab/premia-13-cpp_FICC | e19caa6a9cadb4ad1361053efc0dfc9418071cf9 | e271da627dbfc8c2c1f7e9f700766544f64c72b2 | refs/heads/master | 2023-03-16T11:11:26.830681 | 2016-04-19T05:58:16 | 2016-04-19T05:58:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,975 | c | //Pricing Discrete Asian Options
//according to Fusai-Meucci
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <time.h>
#include "nrutil.h"
#include "pnl/pnl_complex.h"
#include "../moments.h"
#include "fractional_fft.h"
#incl... | [
"jamanikun@gmail.com"
] | jamanikun@gmail.com |
d135aaf646d9c2dffb92bc3f1920f5014ddd7202 | 80ea01d9c94d0336e9b712522673427d38416478 | /_arsian/Source/T4200/Common/Txn_flow/inadjinv.c | fd44b7355e385f60e41393dad065e5e5717096fa | [] | no_license | suyuti/Hypercom_parsian | 95b05bb5cb3a1f48b093bb4b562cf4af2c6d43cf | e78fa29ae332235273c9c1d28cf2a2f6e7ec6ca3 | refs/heads/master | 2020-12-24T15:22:33.818145 | 2015-02-26T21:30:32 | 2015-02-26T21:30:32 | 31,389,765 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,557 | c |
//=============================================================================
// Hypercom Inc
// (c) Copyright 2002
//=============================================================================
//
// Module overview: inadjinv.c
// Adjust/close tab routine... | [
"mehmet.dindar@SMART0178.smartmoss.local"
] | mehmet.dindar@SMART0178.smartmoss.local |
f09c469e4fae1c3717fef789d966de253aac82d4 | 5834fbaa9c0b977ed837600aa4c873e9a2bbbdf8 | /old_percpu/percpu.c_117 | afbf352ae58041e2defbacdf433d26c2ff98975e | [] | no_license | mitchelljbognar/mfctraces | 40d805c35ee5df93ff600e76889545f9bad0e57c | 2f55f49d6169f07997f08bf1b449af853c6fb801 | refs/heads/master | 2020-04-10T02:44:10.625513 | 2018-12-07T00:59:29 | 2018-12-07T00:59:29 | 160,751,274 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 58,423 | /*
* mm/percpu.c - percpu memory allocator
*
* Copyright (C) 2009 SUSE Linux Products GmbH
* Copyright (C) 2009 Tejun Heo <tj@kernel.org>
*
* This file is released under the GPLv2.
*
* This is percpu allocator which can handle both static and dynamic
* areas. Percpu areas are allocated in chunks. Each chun... | [
"mitchelljbognar@gmail.com"
] | mitchelljbognar@gmail.com | |
2ed92aa8161a89b6bf5670df0753a58bb951b1bc | b6a3beb97bf0b93626c24899e064efed88604bda | /bin/hxssup/R_device.c | dd5c4baa6e278c3ecdd7c2d3b1466a179c9a744d | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | veereshj/HTX | 02f4c6a09613d182a55eb37f85c2637934366e7b | c39b1bea1e791eeb81eb95e2a987b36c8003ac1e | refs/heads/master | 2021-01-15T19:35:50.428447 | 2016-04-06T22:04:19 | 2016-04-06T22:04:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 58,756 | c | /* IBM_PROLOG_BEGIN_TAG */
/*
* Copyright 2003,2016 IBM International Business Machines Corp.
*
* 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/LIC... | [
"mehul.patel@in.ibm.com"
] | mehul.patel@in.ibm.com |
0b089271b03a0726267284b78f162a1beb8e5b7c | f8869b2aec86dd3294d48e53c86e00f672f9aba6 | /lib/data_dictionary/include/data_dictionary_implementation.h | 382dad60a8a3c3a5ddc0697432d7e6d824e26423 | [] | no_license | LucasPayne/collision | 6c030f0571534dfd7a53f70ff2c9cc58a47b6816 | 8026611c2341d050f7a58493da38e446df8e7372 | refs/heads/master | 2020-09-06T15:22:35.233541 | 2020-05-12T11:35:07 | 2020-05-12T11:35:07 | 220,462,134 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,898 | h | /*================================================================================
This header contains the non-interface declarations for the data-dictionary
module.
================================================================================*/
#ifndef HEADER_DEFINED_DATA_DICTIONARY_IMPLEMENTATION
#define HEAD... | [
"lucaspayyne@gmail.com"
] | lucaspayyne@gmail.com |
16efa41dbef023fe6e89054e189196e069ef4c77 | 1c67a251a7083d5c77f99ad22398f475bde04a2e | /3 - Optimización Manual de Código Fuente/Teoria/Desdoblamiento de ciclos de repetición (loop unrolling)/LoopUnrolling-5.c | 63f69a2cac25b630365978975d39b0dde8c33fc7 | [] | no_license | gastonframirez/UBP-PEF | bf72ffffc307030cadc8c777f9d996f94464aca1 | c3fd67f786831bf105e699878044db948649b662 | refs/heads/master | 2020-03-08T15:57:25.678329 | 2018-04-10T21:52:40 | 2018-04-10T21:52:40 | 128,226,217 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,541 | c | #include <stdio.h>
#include <stdlib.h>
double* CrearVector (int elems);
double* BorrarVector (double * vector);
int main (int argc, char *argv[]) {
int repetir = 1, loop = 0, offset = 0;
int error = 0, f = 0;
int elementos = 5000;
double *pantalla = NULL, *imagen = NULL;
if (argc > 1)
repetir = atoi(a... | [
"gastonframirez@gmail.com"
] | gastonframirez@gmail.com |
93bc4205247ed92783f168571019fdb1f6a5adf7 | f5db3a8146a3f22a8fbac8f24b395ae4a85b3695 | /SampleCode/NuMaker/emWin_GUIDemo/main.c | f3d33b977542007f929d3d956e57398a75571a83 | [
"Apache-2.0"
] | permissive | Tang-xlll/M261BSP | 64e2a73f00ee7760f77e11714926f3511ba55684 | cde8c34567eca289d8919677ab33d0943633c36e | refs/heads/master | 2023-03-17T16:12:36.488387 | 2021-02-22T02:30:49 | 2021-02-22T02:30:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,823 | c | /****************************************************************************
* @file main.c
* @version V2.00
* @brief To utilize emWin library to demonstrate widgets feature.
*
* @note
* Copyright (C) 2019 Nuvoton Technology Corp. All rights reserved.
*
************************************************... | [
"CSYang2@nuvoton.com"
] | CSYang2@nuvoton.com |
4fb6f186bc2fbdd6b0c8e4220723d7573cac28fc | 49433ccd4943d29609053153471a4dd32a2cef84 | /abhi96_enumerator_3.c | 760fb98d4fd52041550aab34200673f8f7e86ae3 | [] | no_license | abhisekmane98/Code3 | b0910aca1c6e7b8a02f2cbd139d2495926f79320 | 0e15abe7fc8f1c2e279e81318fcdc1c253aac22a | refs/heads/main | 2023-08-06T07:16:46.714440 | 2021-10-02T17:52:04 | 2021-10-02T17:52:04 | 412,871,334 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 587 | c | // checking function is even or not
#include<stdio.h>
enum boolean iseven(int);
void display(enum boolean);
enum boolean
{
true,false
};
enum boolean iseven(int c)
{
if(c%2==0)
return(true);
else
return(false);
}
void display(enum boolean r)
{
if(r==true)
printf("Even No.");... | [
"noreply@github.com"
] | abhisekmane98.noreply@github.com |
70e35bfb041ce9dcd94e136165059954fc896e61 | c0f078d5531690c5ff7a4411b32072cda828f7fa | /system/STM32L0xx/Source/dosfs_sflash.c | a3cfb09b5e031760afc06d65d0645438ea15e7dc | [] | no_license | samuderaahr/ArduinoCore-stm32l0 | e4c3bf031f742325c49b5d0d14a164e2a0f369a3 | 2495b50a9d1887e9482591276f9637927f3b99ed | refs/heads/master | 2021-05-10T09:15:03.367022 | 2018-01-28T11:47:59 | 2018-01-28T11:47:59 | 118,919,256 | 0 | 0 | null | 2018-01-25T13:57:08 | 2018-01-25T13:57:08 | null | UTF-8 | C | false | false | 60,264 | c | /*
* Copyright (c) 2016-2018 Thomas Roell. 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 with the Software without restriction, including without limitation the
* rights to us... | [
"grumpyoldpizza@gmail.com"
] | grumpyoldpizza@gmail.com |
28fe457ce98a64e69e8d1b229578b85c17b27937 | d1bfc2485ab7c37a7edf093e3c58d93627294afa | /srcs/parser/init_ctags_cmp.c | 68c32ef1c696c4212f8299ffd1d7abecc66995d2 | [] | no_license | yoouali/RT | 08c240710f54e4c1bafd0c00de543caca9f09938 | d0495ab85dfce5b22e6a04a07ad5512ecce25e1b | refs/heads/master | 2023-04-05T01:51:00.654876 | 2021-04-30T15:18:40 | 2021-04-30T15:18:40 | 348,310,938 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,654 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* init_ctags_cmp.c :+: :+: :+: ... | [
"youssefoualifessuoy@gmail.com"
] | youssefoualifessuoy@gmail.com |
2b57eb13baf362e3cd79083a190cae2332ec9b88 | 61b2d77aa1d2a2d484949ea5c590d1872109b8d0 | /0x0D-preprocessor/3-function_like_macro.h | c2b51f0b5b082cf65b0c700c57309d73fb7226a3 | [] | no_license | nshutinicolas/alx-low_level_programming | f2390a34ab134681cfe0905950f824e196803347 | c2e4283b13a1ba582940c676ae5b21393783c76c | refs/heads/master | 2023-03-21T06:20:54.031750 | 2021-03-11T09:35:46 | 2021-03-11T09:35:46 | 335,707,707 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 80 | h | #ifndef ABS_H
#define ABS_H
#define ABS(x) ((x) < 0 ? (x) * (-1) : (x))
#endif
| [
"nshuti.nicolas@yahoo.com"
] | nshuti.nicolas@yahoo.com |
75f4f3a791df5a97e2cacec8106c9640c4d7923e | 0d9a644ef4d90f3068d07228dfcf54ae940cfcba | /lib/instances/research/crafting/weapons/hammers/aegraths-way.c | 1c8c0b7b052e0e6b144bee3a629e2d8fdf62fab4 | [] | no_license | cellboy/core-lib | 3584d8dec497a435d3742f2a7326c3b19beda0c8 | 9ddaa6416c538bbcd51a15c834ea6d5ec744ea40 | refs/heads/master | 2023-08-12T17:57:18.183853 | 2021-09-22T21:09:37 | 2021-09-22T21:09:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,489 | c | //*****************************************************************************
// Copyright (c) 2021 - Allen Cummings, RealmsMUD, All rights reserved. See
// the accompanying LICENSE file for details.
//*****************************************************************************
inherit "/lib/mod... | [
"abc@maelstrom.cc"
] | abc@maelstrom.cc |
14c0c783d68cf9b695d0d85c96f80ed417baec2f | dc8577728f827997af3ff7586715443ab0004895 | /ompi/mca/io/romio314/romio/mpi-io/fortran/set_infof.c | 12731b273d89b60338f47a7a9a39c63a16ffa942 | [
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause-Open-MPI"
] | 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 | 3,303 | c | /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
/*
*
* Copyright (C) 1997 University of Chicago.
* See COPYRIGHT notice in top-level directory.
*/
#include "adio.h"
#include "mpio.h"
#if defined(MPIO_BUILD_PROFILING) || defined(HAVE_WEAK_SYMBOLS)
#if defined(HAVE_WEAK_SYMBOLS)
#if defined(H... | [
"rhc@open-mpi.org"
] | rhc@open-mpi.org |
1769d0e2aa43e9180780fa8e435ab246c9f21f7a | 44569d9c930edb0123c48541d19b5bfa19ffdd3a | /complete/766.toeplitz-matrix.c | de77e8c8ec649e2cc0ce8a72bf7bb310dae63d1c | [] | no_license | HC-Chang/LeetCode | 1b45a52e2c6c7235d28281d74631f032b3915284 | e0f50789b95b46025a5b16800bc9e3fd59439043 | refs/heads/master | 2023-08-16T20:31:59.662222 | 2023-08-16T16:02:19 | 2023-08-16T16:02:19 | 148,348,757 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 403 | c | /*
* @lc app=leetcode id=766 lang=c
*
* [766] Toeplitz Matrix
*/
// @lc code=start
bool isToeplitzMatrix(int **matrix, int matrixSize, int *matrixColSize)
{
for (int i = 1; i < matrixSize; i++)
for (int j = 1; j < matrixColSize[0]; j++)
if (matrix[i][j] != matrix[i - 1][j - 1])
... | [
"student0804@gmail.com"
] | student0804@gmail.com |
b51886c5fccebba320feba14a19eb456d05a589f | e6b0e80ab22f5ec913c6419febf9485eeefd3c76 | /src/gp/gp_spread.h | 86435a08b457d191f21c80629107899a528c4f79 | [
"BSD-3-Clause"
] | permissive | Xingquan-Li/ripple | c6811f7d58cad7c4dde04c5f72bd7183ec3ad97a | 330522a61bcf1cf290c100ce4686ed62dcdc5cab | refs/heads/main | 2023-03-11T19:02:27.518964 | 2021-02-26T05:40:25 | 2021-02-26T05:40:25 | 395,174,545 | 1 | 0 | NOASSERTION | 2021-08-12T02:45:12 | 2021-08-12T02:45:12 | null | UTF-8 | C | false | false | 118 | h | #ifndef _SPREAD_H_
#define _SPREAD_H_
void spreadCells(const int binSize, const int times, const double td);
#endif
| [
"rholais@gmail.com"
] | rholais@gmail.com |
4c433f2d960435a9b003af07f790374e9bd3c727 | c3359bd44c79053096510b88d4a54644f4b9278c | /GALX_1132_TEST_FOLDER/CAN_test.c | 34eeaf8bf9760c21681165ba0bf35eb980aeed8e | [] | no_license | William-B-G/Recovered_Selector_6 | 7d233657f78fa8f7bd2487d4ae3e4fcccbbe9c82 | e5eb0e4c0ed0fa5e5d7346c68f44a6ebed24a15d | refs/heads/master | 2020-04-24T17:04:51.613925 | 2019-02-22T20:50:10 | 2019-02-22T20:50:10 | 172,133,535 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 12,215 | c | // CAN_test.c
#include "global.h"
#include "GALX_1132_TEST.h"
#define GR_CAN CAN_C // Use C for Group CAN
#define ENABLE 1
#define DISABLE 0
int16 The_CAN_test(int16 Operation);
extern int32 grcan_status;
extern int16 grcan_mode;
extern int16 grcan_int_status;
extern int16 grcan_error;
struct SebTag {
unsigned ... | [
"williamgrauer1121@gmail.com"
] | williamgrauer1121@gmail.com |
03876c0d06b147f2ed314d0f3596965ec6edbf50 | ec73ba9616d7859febbe38f4039cca90c75558a0 | /Raspberry_pi_Starter_kit_V2/Source_code/11_RaspberryPiControltheLEDBrightness.c | c4e3167139c970bfa755667bc85ad7009b969ab2 | [] | no_license | sunrobotics/Raspberry-Pi | 6e44f4883a5f767948ae766beec86263f6cf7257 | 3f74cc858330b53c563782ca44da19d69b9aa23e | refs/heads/master | 2020-09-02T02:11:36.587256 | 2019-11-06T10:07:39 | 2019-11-06T10:07:39 | 219,110,084 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,690 | c | /*********************************************************************************
*Filename : lightsensor.c
*Description :use a photoresistor to allow the LED to breathe
*Company : SunRobotics Technologies
*Website : www.sunrobotics.co.in
*E-mail : support@sunrobotics.co.in(For Any Query... | [
"noreply@github.com"
] | sunrobotics.noreply@github.com |
d7ba6f97c32746b9289b7888ed295d5b73a5c8a6 | 868d11524125830d38d6da567dbb0d8c906b76cd | /src/registers.h | 9fe59da806add76f93fdd7aa72d255135fd5e739 | [] | no_license | Apoorv-DTU/NES-emu | 2242941eb974ec296bcbc28454e4fa57087c8993 | 646ca22d9eeef572f93df062a1e07c808fe4be1d | refs/heads/master | 2020-05-22T16:55:37.670525 | 2017-06-11T06:26:54 | 2017-06-11T06:26:54 | 84,706,457 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 739 | h | #ifndef REGISTERS_H
#define REGISTERS_H
#include <stdint.h>
#include "cmd.h"
#define GETNBIT(val, n) ((val >> n) & 1)
#define SETNBIT(val, n, b) (b==0?(val &= ~(1 << n)):(val |= (1 << n)))
void set_PC_NZ(state_t* regs, const uint8_t value);
// Register transform commands
Status TAX(arg_t args, state_t* regs);
Stat... | [
"Apoorv Goel"
] | Apoorv Goel |
d084512d78dbf8b464b5f02a8bf95762b862a6f5 | 57eb79d50a4f27a359597f0737a8a3882332fbee | /Unidad3/Ej20p2.c | 3c84969e7fda3657e42d4fe7d8373ec6a775fcba | [] | no_license | manuugit/SistemasOperativos | 03c0b477e26c26741a4d4ee62883eb242c518a74 | 8f3657f05c6545debc832f04a4dc368af203ff57 | refs/heads/main | 2023-04-19T08:25:51.879525 | 2021-05-08T02:53:56 | 2021-05-08T02:53:56 | 331,784,048 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,107 | c | //generar una condicion de carrera en este programa
#include <pthread.h>
#include <stdlib.h>
#include <stdio.h>
static long glob = 0;
//funcion que va a ejecutar el hilo
static void* threadFunc(void *arg) {
int loops = *((int *) arg);
long loc;
for (int j = 0; j < loops; j++) {
loc = glob;
... | [
"manuela.hernandezr@upb.edu.co"
] | manuela.hernandezr@upb.edu.co |
1103d04787a46c1ea914260b04b3dfd3d417c532 | 1b90be9561c10508eea59cb36c1f1665d0ef947f | /lib/sundials_6.1.1/src/kinsol/kinsol_io.c | 9c02f8f71f33d9818b7458e5c49c6b6b31105bd6 | [
"BSD-3-Clause",
"GPL-2.0-only",
"Apache-2.0"
] | permissive | stan-dev/math | 473e7c1eaf11f84eaf2032c2455e12ba65feef39 | bdf281f4e7f8034f47974d14dea7f09e600ac02a | refs/heads/develop | 2023-08-31T09:02:59.224115 | 2023-08-29T15:17:01 | 2023-08-29T15:17:01 | 38,388,440 | 732 | 240 | BSD-3-Clause | 2023-09-14T19:44:20 | 2015-07-01T18:40:54 | C++ | UTF-8 | C | false | false | 28,579 | c | /* -----------------------------------------------------------------
* Programmer(s): Allan Taylor, Alan Hindmarsh, Radu Serban, and
* Aaron Collier, Shelby Lockhart @ LLNL
* -----------------------------------------------------------------
* SUNDIALS Copyright Start
* Copyright (c) 2002-2022, Lawre... | [
"sebastian.weber@novartis.com"
] | sebastian.weber@novartis.com |
10502b19311f73a32cf8c8e6dfe5f16cf4b02ffc | 6572a3cdbbe1682c61f888d0b21ff528b01ab1fe | /ldp/ldp_global.h | 9db8a50ad599757c5cae769fc717c6ceff4aeacc | [] | no_license | antonrogov/freebsd-ldpd | d214b9c8cb577e72eabda18c4c157fd22289980c | 724187fdcbf42dc059057f88e4798a0dccf8f097 | refs/heads/master | 2016-09-06T06:46:08.873951 | 2012-05-03T12:46:50 | 2012-05-03T12:46:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,307 | h |
/*
* Copyright (C) James R. Leu 2000
* jleu@mindspring.com
*
* This software is covered under the LGPL, for more
* info check out http://www.gnu.org/copyleft/lgpl.html
*/
#ifndef _LDP_GLOBAL_H_
#define _LDP_GLOBAL_H_
#include "ldp_struct.h"
extern ldp_global *ldp_global_create(mpls_instance_handle data);
... | [
"antonrogov@me.com"
] | antonrogov@me.com |
423500e606c1a54e5bbb7384e5b0f89d15a65051 | 1cc48e59acf3c330451f478de1e2608edca16847 | /enumMonths.c | 4d1fad62bf92d344212d61c4dd5e1ed6a319cad5 | [] | no_license | cwsehn/ProgramInC | 586a5b49c28bd64f7a9319a1888962a6da2e6aea | 4e1522b25e480b0d5fc4f6db5ce612a2cf4fdfb1 | refs/heads/master | 2021-05-14T13:46:36.405959 | 2018-01-02T00:01:04 | 2018-01-02T00:01:04 | 115,956,300 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,719 | c | /* **********
Program 14.1 Programming in C
+ chapter 14, exercise 2....monthName function....
Enumerated Data Types
***** */
#include <stdio.h>
// a globally declared enumerated data type....
enum month { january = 1, february, march, april, may, june,
july, august, september, october, november, decemb... | [
"cwsehn@gmail.com"
] | cwsehn@gmail.com |
249830c7f6efc263a028f9abaae6aed0c60661e0 | 91c0ccb7f61732ce712e3f26b18ff85dd11d8e27 | /8 - Abb/abb.c | 52fb6b3b1b4b71fa9b45b015d7027c36f502fa5d | [
"MIT"
] | permissive | ordonezf/algo2 | 8154d814b3fb36af6a39adc5fbe95e4bdd1b7bfd | 5aa4d2594e558747cdb7f28eb302f5b386b920d9 | refs/heads/master | 2020-02-26T14:28:13.932062 | 2016-06-12T06:03:05 | 2016-06-12T06:03:05 | 60,943,671 | 0 | 3 | null | null | null | null | UTF-8 | C | false | false | 9,851 | c | #include <stdlib.h>
#include <stdbool.h>
#include <stddef.h>
#include <string.h>
#include "abb.h"
#include "pila.h"
char *strdup(const char *s);
/*******************************************************************
* DEFINICION DE LOS TIPOS DE DATOS *
***********************************... | [
"ordonez.f93@gmail.com"
] | ordonez.f93@gmail.com |
a41b45b5a5ee40346db682b8ba5d6458023c9a68 | 534df448db1b768e98f7b587a1cb96de0339fa03 | /struct/puerta.h | 452a158f2687e2e04ce0542a5262436090561fac | [] | no_license | lucasguerra91/some-c | 878889c8706df2a0f15d858ce647793a69c51b02 | 81750a1b5c298b81652d4ae7b50a72b9dbc4ee04 | refs/heads/master | 2020-06-03T18:53:56.634286 | 2019-10-14T17:45:14 | 2019-10-14T17:45:14 | 191,690,439 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 354 | h | //
// Created by lguerra on 9/5/19.
//
#ifndef SOME_C_PUERTA_H
#define SOME_C_PUERTA_H
#include <stdbool.h>
typedef struct puerta puerta_t;
puerta_t* crear_puerta();
void destruir_puerta(puerta_t* p);
void abrir_puerta(puerta_t* puerta);
void cerrar_puerta(puerta_t* puerta);
bool puerta_esta_abierta(puerta_t* p... | [
"guerra986@gmail.com"
] | guerra986@gmail.com |
3f2797bed639030a7143aeff594668e0f54e13b8 | a1446c3f95df2dfe097a9bd6b463767b00f18140 | /sys/arch/alpha/pci/pci_1000a.c | 75d9f2e262fd25127006b2454500cb9423fefbc2 | [] | no_license | chrissicool/l4openbsd | e2fb756debc1c3bdc1c2da509fa228c25a3185e8 | 077177814444e08500e47bc2488502f11469bc60 | refs/heads/master | 2021-04-09T17:12:53.122136 | 2011-08-22T16:52:58 | 2011-08-22T16:52:58 | 1,706,491 | 18 | 4 | null | 2017-04-06T19:17:29 | 2011-05-05T14:08:03 | C | UTF-8 | C | false | false | 9,811 | c | /* $OpenBSD: pci_1000a.c,v 1.12 2009/09/30 20:16:30 miod Exp $ */
/* $NetBSD: pci_1000a.c,v 1.14 2001/07/27 00:25:20 thorpej Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is based on pci_kn20aa.c, written by Chris G. Demetriou at
* Carnegie-Mellon University. Pl... | [
"cludwig@net.t-labs.tu-berlin.de"
] | cludwig@net.t-labs.tu-berlin.de |
2952ebe3effa9f91fdba4b02ef75ca7b2d470ea2 | 3e88697a0e6da6bd28fa32d8e3950acf64d31501 | /chai3d/external/PhantomDriver/deviceIO ghost40/phantomDeviceIO40.h | e3c63d4943cbe4ee4477ce8ac96a3f0a78a9c51b | [] | no_license | agentmorris/MeshTools | 821390482e0aaf8b7760b13bbe6e530ebe2bb249 | 5334aa42f4e416fba2c5cbfddf2e1d9e83512e9e | refs/heads/master | 2021-01-01T19:27:10.379488 | 2017-07-28T14:58:50 | 2017-07-28T14:58:50 | 98,591,404 | 11 | 4 | null | null | null | null | UTF-8 | C | false | false | 6,582 | h | //===========================================================================
/*
This file is part of the CHAI 3D visualization and haptics libraries.
Copyright (C) 2003-2004 by CHAI 3D. All rights reserved.
This library is free software; you can redistribute it and/or modify
it under the terms of the ... | [
"dan@microsoft.com"
] | dan@microsoft.com |
49a9105ccc42d176b187865b3cc5dc5fa8ebafe0 | a99a58d584058c72ce10c888e9f9a574d5c4dca6 | /benchmarks/multLibs/EQ_getSign2/9/old.c | bae4bd9dd8d2263170c5da537ad683e057d1294d | [] | no_license | CC24LIFE/CC2 | 6167a9a86c50c97f591a2b4e1fa3e4cd4f071ace | c2fed5c57fb351216ba4547d662477f6ae338bf0 | refs/heads/master | 2020-07-05T08:54:20.345988 | 2020-05-20T04:18:57 | 2020-05-20T04:18:57 | 202,597,952 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,116 | c | int lib(int x)
{
int ret;
if (x == 0)
ret = 0;
else
if (x < 0)
ret = -1;
else
ret = 1;
return ret;
}
int client(int x, int x_copy1, int x_copy2, int x_copy3, int x_copy4, int x_copy5, int x_copy6, int x_copy7, int x_copy8)
{
int ret = x;
if (x > 0)
{
ret = lib(x);
}
int ret_c... | [
"CC24LIFE@outlook.com"
] | CC24LIFE@outlook.com |
44eb20493a19afdecd66e5f4d036f53b3f60ecc6 | 38f055a979a0e4acecf5d2a5ad0d0344d1f52db2 | /src/mame/drivers/tonton.c | 6259b62773538d1ffb65ca4a03c2874b18dddf8d | [] | no_license | poliva/mame-rr | 0cc05bed2a80addbb906e97b8f25633496eecab6 | 124dbb66844bc6d8747b19b8483cefa28fb6b7fb | refs/heads/master | 2021-01-22T05:16:42.247183 | 2015-04-24T08:59:22 | 2015-04-24T08:59:22 | 34,506,421 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,175 | c | /**************************************************************************
Waku Waku Doubutsu Land TonTon (c) 199? Success.
HW based off MSX2
Driver by Angelo Salese & Roberto Fresca.
TODO:
- Hopper mechanism.
===========================================================================
... | [
"pau@eslack.org"
] | pau@eslack.org |
3492abdce16baaaeb353b93a40ade2d560f77e99 | 245c626dd994b23788f48671f06a27b29588a10a | /Rak811sx1276/Inc/SX1276/radio.h | 91db23c37bda482317bc95210e11b28a3d3b23f3 | [] | no_license | uraich/rak811Demos | e70b81fc7187a4d71b7e2fe34ece271d5bd8ef73 | ab89abc4dd18033889e0853e224c927867f7c115 | refs/heads/master | 2020-03-27T19:36:55.431021 | 2018-09-12T20:31:23 | 2018-09-12T20:31:23 | 147,000,899 | 16 | 4 | null | null | null | null | UTF-8 | C | false | false | 13,474 | h | /*
/ _____) _ | |
( (____ _____ ____ _| |_ _____ ____| |__
\____ \| ___ | (_ _) ___ |/ ___) _ \
_____) ) ____| | | || |_| ____( (___| | | |
(______/|_____)_|_|_| \__)_____)\____)_| |_|
(C)2013 Semtech
Description: Generic radio driver definition
License: Revised BSD L... | [
"uli.taich@cern.ch"
] | uli.taich@cern.ch |
1b3cf9d118d486793143ac4f8f272086e11d8159 | a996abd669675efe41634b4131aa4c9f5bf5f6db | /config.h | bec1eb0153680e66542426631460a186f09b40ba | [] | no_license | chyuhoin/stg | 16e33a40e595c900e8621d4a6fac445518a8b698 | cdb3613491319985b28ea8663b5cb0e7103e7e89 | refs/heads/main | 2023-08-30T23:22:02.714073 | 2021-10-12T11:00:22 | 2021-10-12T11:00:22 | 416,294,661 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,112 | h | #ifndef CONFIG_H
#define CONFIG_H
#include <QDebug>
#include <QPainter>
#include <QImage>
#include <QPixmap>
#include <QWidget>
#include <QKeyEvent>
#include <cmath>
#include <QTimer>
#define MAP_SCROLL_SPEED 2 //下方地图滚动速度
#define MAP_SCROLL_SPEED_2 4 //上方地图滚动速度
#define GAME_WIDTH 1024 //宽度
#define ... | [
"noreply@github.com"
] | chyuhoin.noreply@github.com |
7c6eebd1ad42043fdf653ce05fc1126ad335f199 | 140dfb8073ed8c0355240eb6b96460bcce3cc03b | /game.c | f076005421a1e7ee8a8f9d87afcbb83370c0ed72 | [] | no_license | amellberg/tic-tac-toe | e5fa17f9a0deb09e57ced82cc2c06bc8dfa72cd7 | 874b945ba25e713e3205252070fded044929398f | refs/heads/master | 2020-03-09T20:36:53.162033 | 2018-04-18T18:09:19 | 2018-04-18T18:09:19 | 128,989,445 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,637 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ncurses.h>
#include <unistd.h>
#include "board.h"
#include "draw.h"
enum { COMPUTER = 0, USER = 1 };
enum { DEPTH = 6 }; // Traverse depth in minimax
static char psymbol[2] = {'O', 'X'};
static int n; // Board is n x n in size
static int curr_inde... | [
"andreas.mellberg@gmail.com"
] | andreas.mellberg@gmail.com |
f695e8274e1ff9acb2fdaddaf1a9025c317f0c61 | 5ccaeb278ef69bf41d803f9bf339101c39bf2136 | /framework/peripheral/ports/processor/ports_p32mz2064dag176.h | 58b02e1b534368f0f3b5687e6f2d510289ed1689 | [] | no_license | Mytrex/Harmony | 6de69d5ebbb8cb7769a9ee7bd0330264c1d6ed3a | 32dceb018139e59a12c26044b9f0252d1c0d67c9 | refs/heads/master | 2021-03-16T09:42:26.915713 | 2016-11-02T08:25:20 | 2016-11-02T08:25:20 | 71,403,438 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 27,526 | h | /* Created by plibgen $Revision: 1.31 $ */
#ifndef _PORTS_P32MZ2064DAG176_H
#define _PORTS_P32MZ2064DAG176_H
/* Section 1 - Enumerate instances, define constants, VREGs */
#include <xc.h>
#include <stdbool.h>
#include "peripheral/peripheral_common_32bit.h"
/* Default definition used for all API dispatch functions ... | [
"jared@mytrexinc.com"
] | jared@mytrexinc.com |
5ec52505eb4f8c81033a7d87d08a35d203b8296d | a92b18defb50c5d1118a11bc364f17b148312028 | /src/prod/src/inc/clr/cortypeinfo.h | 71ab7481a2db4aa8fb9ba97bd9b5a8ae319fdb3b | [
"MIT"
] | permissive | KDSBest/service-fabric | 34694e150fde662286e25f048fb763c97606382e | fe61c45b15a30fb089ad891c68c893b3a976e404 | refs/heads/master | 2023-01-28T23:19:25.040275 | 2020-11-30T11:11:58 | 2020-11-30T11:11:58 | 301,365,601 | 1 | 0 | MIT | 2020-11-30T11:11:59 | 2020-10-05T10:05:53 | null | UTF-8 | C | false | false | 5,195 | h | // ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
TYPEINFO(ELEMENT_TYPE_END, ... | [
"31968192+bpm-ms@users.noreply.github.com"
] | 31968192+bpm-ms@users.noreply.github.com |
cc87a43c3c5e9741016dd0cf66df6a3f06ec6ba6 | 619181b49d063c4d1c5c3fa28ba95baee6775524 | /chap18/m/mbsrtowcs_ex.c | 23ee19ee60a44979e8a27eba5bbceb649c558b80 | [] | no_license | paulevans/c-in-a-nutshell-2E | c22de709b6253cce835779d77a0c32885572b034 | b00bfedd360826747245ed1791fa495e24beb532 | refs/heads/master | 2021-05-03T04:21:40.300964 | 2016-03-26T23:51:23 | 2016-03-26T23:51:23 | 54,804,598 | 1 | 1 | null | 2016-03-26T23:46:28 | 2016-03-26T23:46:28 | null | UTF-8 | C | false | false | 1,098 | c | // mbsrtowcs_ex.c : mbsrtowcs() example
// -------------------------------------------------------------
#include <wchar.h> // size_t mbsrtowcs( wchar_t * restrict dest,
// const char ** restrict src,
// size_t n,
... | [
"paul.d.evans@gmail.com"
] | paul.d.evans@gmail.com |
4eecec94c3d5c17742467e82c8e097f673b318d2 | c81732f730f368075c105d48682d2e408eae0064 | /JUCE/SeaboardVisuals/JuceLibraryCode/AppConfig.h | 185223fbf1c3a0f4e8f58366c1486c9e9232b399 | [
"ISC",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-mit-taylor-variant"
] | permissive | giveanattribute/SeaboardAPI | 94ae64a8514214f61c0ff89d0afe37e2373e3446 | 3585c333c376345e998c8895c4f063f98c5a1b7a | refs/heads/master | 2020-04-03T16:11:10.140283 | 2018-10-30T18:30:17 | 2018-10-30T18:30:17 | 155,394,764 | 0 | 0 | NOASSERTION | 2018-10-30T14:07:52 | 2018-10-30T13:59:48 | C++ | UTF-8 | C | false | false | 5,013 | h | /*
IMPORTANT! This file is auto-generated each time you save your
project - if you alter its contents, your changes may be overwritten!
There's a section below where you can add your own custom code safely, and the
Introjucer will preserve the contents of that block, but the best way to change
... | [
"sasoraghan@googlemail.com"
] | sasoraghan@googlemail.com |
067ed54749ff673c3082c42519c368af500eef9c | 7ee94080d5e6b53b37f31ab5d911e3236150cfee | /proyectos/proyecto2/main.c | 8a58ccf82067723a6dadc995bd0f77ce3c9f539f | [] | no_license | Eddbert/Progra_Avanzada | 48ce09f316ff05a3d7db54a01908efff058f7218 | 2fd5daabe2494b3d84de438188e84ede0cfb2c44 | refs/heads/master | 2021-09-13T19:58:55.471108 | 2018-05-03T15:51:53 | 2018-05-03T15:51:53 | 117,172,450 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,560 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main ()
{
FILE *fp;
int c;
int i = 0;
int numeral = 0;
int T_Flag = 0;
int N_Flag = 0;
int N;
int** dice;
int** list;
int faces = 6;
int x = 0;
int y = 0;
int k = 0;
int l = 0;
... | [
"eddyargott@hotmail.com"
] | eddyargott@hotmail.com |
bd0e974a5ff5de2040e0b904e50d109ddc608fa6 | 7138c24ab30d5b6bf3b5b70097d94f715224afb0 | /Firmware/tcpip/TCPIP Stack/MAC.h | f39ac7c3b3443cf8ba2f7fc09c1a88783c301c19 | [] | no_license | Subaru-PFS/ics_xcu_fee | f097f196badabbcec4a549ab920d1f2439a365c5 | 4ab2114824df02960ce353223acf8965c6552d15 | refs/heads/master | 2021-06-05T22:17:17.146244 | 2019-11-20T22:15:34 | 2019-11-20T22:15:34 | 56,027,065 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,627 | h | /*********************************************************************
*
* MAC Module Defs for Microchip Stack
*
*********************************************************************
* FileName: MAC.h
* Dependencies: StackTsk.h
* Processor: PIC18, PIC24F, PIC24H, dsPIC30F, dsPIC3... | [
"Stephen.Hope@IDG.JHU.EDU"
] | Stephen.Hope@IDG.JHU.EDU |
60dfc2633eee5a08a4e6cac305ff446f0378c9c1 | a03a7935a191d63bee76fd3b85a61ee27f98904a | /src/databases/M3DC1/avtM3DC1Field.C | 8095e482384a5705470704517abf2f655d2654ef | [] | no_license | cchriste/visit | 57091c4a512ab87efd17c64c7494aa4cf01b7e53 | c72c413f571e56b52fb7221955219f11f4ba19e3 | refs/heads/master | 2020-04-12T06:25:27.458132 | 2015-10-12T15:41:49 | 2015-10-12T15:41:49 | 10,111,791 | 5 | 1 | null | null | null | null | UTF-8 | C | false | false | 28,316 | c | /*****************************************************************************
*
* Copyright (c) 2000 - 2015, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-442911
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl... | [
"bonnell@18c085ea-50e0-402c-830e-de6fd14e8384"
] | bonnell@18c085ea-50e0-402c-830e-de6fd14e8384 |
a76f872e1ccb973e2b6937c86d1766cc81c0319d | c01a7c5d4af29b11e8b6d7fe05315a662d965a11 | /K8-cmocka-test/calc/src/calc.h | b3cf128369dd95145f699cd88b3dd05a2dba51b1 | [] | no_license | st-rnd/cmake-sandbox | e12ac0324251b6290571503241a5505de667b630 | 19180a5ced5e2b219dc996fb7684bd8362d68383 | refs/heads/master | 2020-09-11T04:49:14.731533 | 2019-10-25T07:27:14 | 2019-10-25T07:27:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 69 | h | int sum(int a, int b);
int sub(int a, int b);
int mul(int a, int b);
| [
"kevinwinatamichael@gmail.com"
] | kevinwinatamichael@gmail.com |
49df2a5e7f679acd92f338ae7ca400edd96e9150 | d1535f287ae521101314ec1b88def243fe895e50 | /lvl00/aff_first_param/aff_first_param.c | 565da9d4643dcb8830a0931017af18ccb5cf4bf8 | [] | no_license | wasahmed/examprep | 164b5603b44999c65965cbab0753ac9e428bab4d | 74881af50261f73308218051068625f1ee76d383 | refs/heads/master | 2020-06-16T18:13:07.920452 | 2019-10-16T08:08:48 | 2019-10-16T08:08:48 | 195,660,955 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 308 | c | #include <unistd.h>
void ft_putchar(char c)
{
write(1, &c, 1);
}
void ft_putstr(char *str)
{
int i;
i = 0;
while (str[i])
{
ft_putchar(str[i]);
i++;
}
}
int main(int argc, char **argv)
{
if (argc < 2)
write (1, "\n", 1);
else
{
ft_putstr(argv[1]);
ft_putchar('\n');
}
return (0);
}
| [
"wasahmed@student.wethinkcode.co.za"
] | wasahmed@student.wethinkcode.co.za |
435761bdd673a732d707246cf5f6fad3a1603a8d | 86e06a24e28121a74cfca2428943f928da8a2f4b | /PuffEngine/deps/ORIGINS/cegui-0.8.7/build/samples/common/include/CEGUISamplesConfig.h | d636e060f599d8f030165fa811fb719759a922e8 | [
"MIT",
"Apache-2.0"
] | permissive | p1r1/PuffEngine_WIP | 3280e1dff0090647afab1670b4c5db71a8d46afa | eeca656dc5a194416ad3426bc66379e7ec12e1a9 | refs/heads/main | 2023-04-24T08:13:03.226877 | 2021-05-17T09:26:57 | 2021-05-17T09:26:57 | 368,130,599 | 3 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,748 | h | /***********************************************************************
created: Mon Jan 10 2011
author: Paul D Turner <paul@cegui.org.uk>
*************************************************************************/
/***************************************************************************
* Copyrigh... | [
"omar.faruk.marasli@gmail.com"
] | omar.faruk.marasli@gmail.com |
a235aa518dbb47bd953e2db30c85825f87a36d4f | e9e8bc845437b4e5d66382284f3eef0d638aac4c | /定制/宝莱威主动发码协议/User/StateKey/bsp_key.h | 1b1e2b7207abc6694c9d4c6fe76fb0358cd07527 | [] | no_license | Mrklly/source | 412bf4ff8668979f459227ee6d3242b6b0dc6903 | 570a400937af6d3ca7de5378f98f8fc512918d33 | refs/heads/master | 2020-11-24T12:57:00.370476 | 2019-12-15T08:49:47 | 2019-12-15T08:49:47 | 228,154,638 | 1 | 0 | null | null | null | null | GB18030 | C | false | false | 1,495 | h | #ifndef _BSP_KYE_H
#define _BSP_KEY_H
#include "stm8s.h"
#include "stm8s_clk.h"
#include "bsp_gpio.h"
#define KEY1_PIN GPIO_PIN_5
#define KEY2_PIN GPIO_PIN_5
#define KEY3_PIN GPIO_PIN_6
#define KEY4_PIN GPIO_PIN_7
#define KEY1_PORT GPIOE
#define KEY2_PORT GPIO... | [
"li18370992660@gmail.com"
] | li18370992660@gmail.com |
08d0bfd6fb8f6a3d838d76a92e00ba3be6780aa2 | 97a17c6b43c4b5a4cc532699bd6f6be3b514f705 | /blinky/blinky/asf-3.21.0/avr32/drivers/tc/simulator_example1/at32uc3l064_simulator/conf_example.h | 59a884884ccbef57efea74f16cc1768eca441e52 | [
"MIT"
] | permissive | ThucVD2704/femto-usb-blink-example | f2adf7ed2cfff860194870b80c870f0a2c27a82b | 5e166bdee500f67142d0ee83a1a169bab57fe142 | refs/heads/master | 2021-01-18T11:04:43.068488 | 2015-04-24T04:53:26 | 2015-04-24T04:53:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,433 | h | /**
* \file
*
* \brief Example configuration
*
* Copyright (c) 2014 Atmel Corporation. All rights reserved.
*
* \asf_license_start
*
* \page License
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. R... | [
"webmaster@alexventure.com"
] | webmaster@alexventure.com |
173d2f22c9c51590268f1da0391fdfc6bc47b41d | 25876ebb4eb6334ec419c262dec991676fead1f8 | /Core/Scr/stm32h7xx_it.c | e48f6ef30ff8e68533e97f7ea87db3adaf0bfd1c | [] | no_license | CHETREMBACH/NUCLEO-H743ZI | a452c4228d0f49929eec6aa95b0d340dd27a02cc | a0fc10354f669df5983c04b0627f9c4748aaea5a | refs/heads/master | 2023-08-14T18:26:36.305478 | 2020-10-18T09:28:54 | 2020-10-18T09:29:02 | 284,747,164 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,539 | c | /**
******************************************************************************
* @file stm32h7xx_it.c
* @author Trembach D.N.
* @version V1.0.0
* @date 23-08-2020
* @brief Interrupt Service Routines.
*
*
******************************************************************************
* ... | [
"trembach.d@gmail.com"
] | trembach.d@gmail.com |
221c0c7cc0bc47e3e6cf45e82c286617ea87b655 | 017f4a4aa14b740d84cc5ed7817ff904bbf2258d | /WPI_2_CS_3013_Operating_systems/project_1/joblist.c | c7f845d447fee4759b21e479b8bf53a796885fe9 | [] | no_license | ezraezra101/coursework | ff4ea60c924c3d4c4f43ae444156ced2d5dd482f | 7048a8fa16db897e31b73c2ac497659389943e26 | refs/heads/master | 2020-06-06T02:59:56.422594 | 2019-06-18T21:56:04 | 2019-06-18T21:56:04 | 192,617,463 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,224 | c | // Gareth Solbeck & Ezra Davis
// Part 3 of HW 1 for CS 3013: Operating Systems
//Functions pertaining to the storage of Job information for shell2.
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
typedef struct job {
int pid;
int jid; // Job ID
char *cmd;
struct timeval startTime;
struct job *next;
... | [
"ezra.davis@yale.edu"
] | ezra.davis@yale.edu |
84968624195ba829bb63a026fc6e00e1e9a01a95 | 5896167027f07d1e53672ebb76b60ed7bf2f09c8 | /Win10_1803_RS4/x86/System32/ntoskrnl.exe/Standalone/_ETW_FILTER_HEADER.h | 70d588c698d95dce2cb7cdc3c1379ed496ed2172 | [] | no_license | antiwar3/headers | c776e1de8b552e1284901361907f5e7515ef20ae | e3ec0f11f62cdc76b6c0b6b9fa0d6ffe55e476f0 | refs/heads/master | 2021-05-25T22:49:20.063532 | 2020-02-24T21:43:26 | 2020-02-24T21:44:11 | 253,953,543 | 1 | 2 | null | 2020-04-08T01:25:44 | 2020-04-08T01:25:44 | null | UTF-8 | C | false | false | 831 | h | typedef struct _ETW_FILTER_HEADER
{
/* 0x0000 */ long FilterFlags;
/* 0x0004 */ struct _ETW_FILTER_PID* PidFilter;
/* 0x0008 */ struct _ETW_FILTER_STRING_TOKEN* ExeFilter;
/* 0x000c */ struct _ETW_FILTER_STRING_TOKEN* PkgIdFilter;
/* 0x0010 */ struct _ETW_FILTER_STRING_TOKEN* PkgAppIdFilter;
/* 0x0014 */ st... | [
"w.benny@outlook.com"
] | w.benny@outlook.com |
55b5f0c09e76bea1111b4a75f0a8b324791fd810 | e426bfa4943daf4206030415cba2012ffc45c532 | /include/common/snippets/creg.h | 55a5bb3ae6f4a53736353968edd567fbb2e0a4a6 | [] | no_license | shawwn/codesuppository | 952c43b48fb12fc70c6c7057119cc4af30e03385 | da9905802797c8e42bb0016d2929d3d768aea332 | refs/heads/master | 2020-03-21T07:14:32.497634 | 2019-06-11T06:56:49 | 2019-06-11T06:56:49 | 138,269,183 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 835 | h | #ifndef CREG_H
#define CREG_H
// C implementation of regular expression system, written by some guy on
// the internet. See comments in CREG.C
#ifdef __cplusplus
extern "C" {
#endif
/*
* Definitions etc. for regexp(3) routines.
*
* Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
* not th... | [
"shawnpresser@gmail.com"
] | shawnpresser@gmail.com |
1b71898ca59f219ffc0a0e93e6a2a9e094d49d09 | 3781d63f1ca75f70f5b45eb420290a5ec4624afa | /assignment mark/src/assignment mark.c | 260676f1031a1f6c9d86a1cc2ec094a84a579e69 | [] | no_license | AbhiramiAppu/C-Programs | 05442eed32808853aacf7c9fe83337c303510803 | 4a50bda3face0a23d93a8237a31e0a1158b63109 | refs/heads/master | 2023-06-02T01:18:20.349156 | 2021-06-10T10:59:21 | 2021-06-10T10:59:21 | 375,662,317 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 592 | c | /*
============================================================================
Name : assignment.c
Author :
Version :
Copyright : Your copyright notice
Description : Hello World in C, Ansi-style
============================================================================
*/
#include <stdio.... | [
"abhrami7696@gmail.com"
] | abhrami7696@gmail.com |
e3776cc9191a4bc1dac7ea3bc83a6d91d2cee9e2 | 6dd55df9d9009f84d009f0c8d04b507d6655c393 | /Projects/zedboard_tdm114/software/zedboard_tdm114_app/src/zed_iic_axi.c | cacad4d056ec22c3338e534931d968d928ca4955 | [] | no_license | alexvonduar/avnet-hdl | 312e89aa36db7f54cb68adae6ee168aafee932dd | 03f6c58b1a32007733e9fb161cd8809f05a59586 | refs/heads/master | 2022-02-07T20:48:28.222598 | 2019-02-19T07:08:48 | 2019-02-19T07:08:48 | 95,207,543 | 1 | 0 | null | 2018-01-19T03:57:24 | 2017-06-23T09:53:06 | Objective-C | UTF-8 | C | false | false | 11,974 | c | //----------------------------------------------------------------
// _____
// * *
// *____ *____
// * *===* *==*
// *___*===*___** AVNET
// *======*
// *====*
//---------------------------------------------------------------
//
// This design is the property of Avnet. Publication ... | [
"mario.bergeron@avnet.com"
] | mario.bergeron@avnet.com |
973010b4fb641edb5bf9b2676893f3236e33192d | e89686c11b9b5fd8df0eab27f70d2ccda40be7a8 | /Driver.h | 129fecb1c0a88c9adfabbc2c4a8d67ce65750fd5 | [] | no_license | shwetadube7/Stepper-Final | 13d5df74e4f1938b03522879671612e38986585e | 546e2253c6fea8452c2fa0784ef91a1fbe8acf5d | refs/heads/master | 2021-01-10T03:49:11.638168 | 2016-01-21T16:48:30 | 2016-01-21T16:48:30 | 50,121,720 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,100 | h | // Driver.h
// This software configures the driver output connections
// Runs on LM4F120 or TM4C123
// Program written by: Shweta Dube
// Date Created: 10/22/15
// Last Modified: 10/24/15
// Lab number: 7
// Hardware connections PB4-PB0 are connected to L293 motor driver
// PE4 connect to Enable Pins 1 and 9
// PE3 PI... | [
"dshweta489@gmail.com"
] | dshweta489@gmail.com |
6b704486b7134999aaa03275e6b1071e228f2826 | 55b965443820c8b967ad71ded0ecce8264367991 | /labi/lab2/bc.c | db2de94a4c4329e8afd36aaeda8e1008ef3f5b69 | [] | no_license | zhuyan-9658/clabs | bcd4822d1959f3cf0427e60f6791f6a5be1c2d94 | ecba526d0b6ca7e198eda7e5210439356d402441 | refs/heads/master | 2020-08-27T20:45:42.054486 | 2019-12-26T05:17:48 | 2019-12-26T05:17:48 | 217,484,866 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 314 | c | #include <stdio.h>
int main()
{
int count=0;
int m=0;
int a=0;
printf("please input the m\n");
scanf("%d",&a);
while(a !=0)
{
m=a%2;
a=a/2;
if(m ==1)
count++;
}
printf("the amount is:%d\n",count);
return 0;
} | [
"1398131736@qq.com"
] | 1398131736@qq.com |
0bb158728f4c467b84000a850eecde228c8c0ac4 | 829f433f724dc30ec808e1c363fb645c06555958 | /Projects/STM324x9I_EVAL/Demonstrations/MB1046/Modules/camera/camera_app.c | 2beda2f189d89f5424053b131196f0feb65065fd | [] | no_license | Bosvark/STM32Cube_FW_F4_V1.1.0 | 3d451932af8017a2459dd8ed8072df854af6707e | 6f48d86351bdd8a9f0ede4d89fa8ad651b4a2667 | refs/heads/master | 2020-05-29T20:55:36.815358 | 2014-09-24T01:59:22 | 2014-09-24T01:59:22 | 21,951,493 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 9,727 | c | /**
******************************************************************************
* @file camera_app.c
* @author MCD Application Team
* @version V1.0.0
* @date 26-February-2014
* @brief Camera application functions source file
**************************************************************... | [
"dieter@bluebag.co.za"
] | dieter@bluebag.co.za |
2c90fbcd4035443c7a6ca47108ac53a7890a925b | 1fabbdfd1ca9ea1b6808893e12bd907eb74de414 | /xcode/Classes/Native/UnityEngine_UnityEngine_Events_CachedInvokableCall_1_gen_483.h | c1e4d06fde60eedac097ca83dbf0387407749beb | [] | no_license | Klanly/TutorialPackageClient | 6f889e96c40ab13c97d107708ae8f3c71a484301 | b9d61ba2f287c491c9565b432f852980ec3fee28 | refs/heads/master | 2020-12-03T01:42:35.256114 | 2016-11-01T02:40:21 | 2016-11-01T02:40:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 468 | h | #pragma once
#include <stdint.h>
// System.Object[]
struct ObjectU5BU5D_t142;
// UnityEngine.Events.InvokableCall`1<RequestReviewWindow>
#include "UnityEngine_UnityEngine_Events_InvokableCall_1_gen_479.h"
// UnityEngine.Events.CachedInvokableCall`1<RequestReviewWindow>
struct CachedInvokableCall_1_t19907 : public Inv... | [
"bu213200@gmail.com"
] | bu213200@gmail.com |
5fe3a0d4ee90b725a4c8d1f374ec8ed267587e31 | 2008701e81663b1b3c957742623b475742c81760 | /peripheral/ddr/processor/ddr_p32mx360f512l.h | 8171e6896d8730691e4952ee5071504a2ef2c254 | [] | no_license | darsolano/PIC32MX | 4cec0c63b88241a6d3b8a4637ec2f1a976984468 | e6ec671f8b69f0f7ec8a573ac235ec3ff5f06da4 | refs/heads/master | 2022-11-12T19:16:26.762869 | 2020-06-26T07:03:00 | 2020-06-26T07:03:00 | 275,093,747 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 11,988 | h | /* Created by plibgen $Revision: 1.31 $ */
#ifndef _DDR_P32MX360F512L_H
#define _DDR_P32MX360F512L_H
/* Section 1 - Enumerate instances, define constants, VREGs */
#include <xc.h>
#include <stdbool.h>
#include "peripheral_common_32bit.h"
/* Default definition used for all API dispatch functions */
#ifndef PLIB_INL... | [
"darwin.solano@gmail.com"
] | darwin.solano@gmail.com |
b3aa0089b2f07ac44a1cd9645067dc8bca9239cb | 58d0b81fc1140a5c477fb12e91c448fa06c98840 | /ciaa_software/motor_control/src/encoder.c | b2d8bd83e95b3986c635ef3ff4eae4e3541b17fc | [] | no_license | cloud-9-team/motor_control_firmware_apps | 1f34682fe2be20e97c1148f9a03f2a4da7fc4c9e | df0fdd6289e17a24e6ae1f5eb80aeef7b7ad15e4 | refs/heads/master | 2021-01-10T13:10:33.100771 | 2016-02-27T07:13:30 | 2016-02-27T07:13:30 | 51,867,079 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 4,655 | c | /*==================[inclusions]=============================================*/
#include "encoder.h"
#include "chip.h"
#include "os.h" /* <= operating system header */
/*==================[macros and definitions]=================================*/
#define GPIO_INTERRUPT (LPC_GPIO_PIN_INT)
/*... | [
"federicobouche@gmail.com"
] | federicobouche@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.