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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3e973a118960020b5113d646ee36d98af583dd9f | 6fe2fffb1e5a68431ded9818b13300e3d9922e3b | /Lista/Fila_ligada/fila.c | 4277637f710b81804bb801c124b54ddcc5459e7b | [] | no_license | Carlos96henrique/Aulas_de_Estruturas | a985c50dbb93f3ce8745d0c089a5b66adf36ba20 | 92d6b21db818049a2283d8c10c6ef375609d41d9 | refs/heads/master | 2020-05-18T09:26:06.492470 | 2020-04-12T16:55:38 | 2020-04-12T16:55:38 | 184,324,802 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,113 | c | #include <stdio.h>
#include <stdlib.h>
#include "fila.h"
void inicia_fila(Fila* f){
f->ini = f->fim = NULL;
}
int fila_vazia(Fila* f){
if (f->ini == NULL){
return 1;
}
return 0;
}
int insere(Fila* f, int i){
No* novo,*aux;
novo = cria_no(i);
if (novo){
if (fila_vazia(f)){
... | [
"carlos.henrique.alves6@gmail.com"
] | carlos.henrique.alves6@gmail.com |
e9041314ee2d8f861ad5380b92d6d2da7c50940a | ec3f845bd2555318ea6adaab3a208e957a473185 | /ex7.c | 1233615ff6c21b5f173b12de5a9b1eac33e5b873 | [] | no_license | ngkhanh0811/session-15 | 7cc015ef3d4999b0fc090bcc18d5ebeb4625270c | 0f101663bcb9a07a104ae06cadb95646603b34f7 | refs/heads/main | 2023-08-20T16:17:12.085558 | 2021-10-15T03:11:47 | 2021-10-15T03:11:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 427 | c | #include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void main(int argc, char *argv[]) {
int x, y, *px, *py;
px = &x;
py = &y;
x = 15; y = 20;
printf("x = %d, \ny = %d", x, y);
swap(px, py);
printf("\nGia tri cua x va y sau ... | [
"nguyenkhanh08112003@gmail.com"
] | nguyenkhanh08112003@gmail.com |
116e392af89b7352060922e91c3460661731c818 | c20c4812ac0164c8ec2434e1126c1fdb1a2cc09e | /Source/Source/KG3DEngine/KG3DEngine/fftw/fn_64.c | c17f79cca5dd2439d697ef08533fb05f896aee3e | [
"MIT"
] | permissive | uvbs/FullSource | f8673b02e10c8c749b9b88bf18018a69158e8cb9 | 07601c5f18d243fb478735b7bdcb8955598b9a90 | refs/heads/master | 2020-03-24T03:11:13.148940 | 2018-07-25T18:30:25 | 2018-07-25T18:30:25 | 142,408,505 | 2 | 2 | null | 2018-07-26T07:58:12 | 2018-07-26T07:58:12 | null | UTF-8 | C | false | false | 75,411 | c | /*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any ... | [
"dark.hades.1102@GAMIL.COM"
] | dark.hades.1102@GAMIL.COM |
7708c76cfd7be8ca68eedffef0a141c8bd1bcf00 | cb5501b4571561b16fe00286e396e12fba777969 | /src/main/host/shd-process.h | 3a068cad2137b8b078641f85ad2b23f8c48c4f0b | [
"LicenseRef-scancode-public-domain"
] | permissive | siemantic/shadow | b4eeaad43a73d237171f87fce1af69831a45e787 | 8d46431fadb1e87ef60b6b1d7fa0c1f7f9e4f40d | refs/heads/master | 2021-01-15T04:52:38.815869 | 2020-03-18T00:28:47 | 2020-03-18T00:28:47 | 242,883,675 | 0 | 0 | NOASSERTION | 2020-03-18T00:28:48 | 2020-02-25T01:40:42 | null | UTF-8 | C | false | false | 23,534 | h | /*
* The Shadow Simulator
* Copyright (c) 2010-2011, Rob Jansen
* See LICENSE for licensing information
*/
#ifndef SHD_PROCESS_H_
#define SHD_PROCESS_H_
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#if !defined __USE_LARGEFILE64
#define __USE_LARGEFILE64
typedef off_t off64_t;
#endif
//#if !defined _LARGEFILE... | [
"jansen@cs.umn.edu"
] | jansen@cs.umn.edu |
4f3aa29334d41e98d512bd5509f46c9ea672ee92 | a0c4ed3070ddff4503acf0593e4722140ea68026 | /source/NET/RAS/SRC/NEWSRV/NETBIOS/CLNCBSUB.C | 1d4f3e33ea3f6d9b4e1eac6b5829082c6a88d406 | [] | no_license | cjacker/windows.xp.whistler | a88e464c820fbfafa64fbc66c7f359bbc43038d7 | 9f43e5fef59b44e47ba1da8c2b4197f8be4d4bc8 | refs/heads/master | 2022-12-10T06:47:33.086704 | 2020-09-19T15:06:48 | 2020-09-19T15:06:48 | 299,932,617 | 0 | 1 | null | 2020-09-30T13:43:42 | 2020-09-30T13:43:41 | null | UTF-8 | C | false | false | 3,760 | c | /**************************************************************************/
/** Microsoft LAN Manager **/
/** Copyright (C) Microsoft Corp., 2000 **/
/**************************************************************************/
//***
// File Name: clncbsub.c
//
// Function: client thread ncb submitter... | [
"71558585+window-chicken@users.noreply.github.com"
] | 71558585+window-chicken@users.noreply.github.com |
05f547aebc6cb652fcd7d28f15dc84dba482023f | 715ecb35aa6992866ce9abcda9d7a06578a318ff | /Engine/software_rendering.h | 1b5925143683eeb78df1686a198904f1aa65301d | [] | no_license | Satiriques/game-engine | f9febc4254f5a35ead0d6f9f3b7f73486c73bca7 | b6cf2d65a6f8c2857eb8645eee882d9aa0037b6a | refs/heads/master | 2022-09-07T09:20:14.619730 | 2020-05-14T22:38:24 | 2020-05-14T22:38:24 | 263,169,291 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 614 | h | #pragma once
#include <stdint.h>
#include "engine.h"
#include "local_math.h"
#include <math.h>
#include "platform_common.h"
void clear_screen(Render_Buffer buffer, uint32_t color);
void draw_rect_in_pixels(Render_Buffer buffer, uint32_t color, int x1, int y1, int x2, int y2);
void draw_rect(Render_Buffer buffer, v2... | [
"bad_ghost2005@hotmail.com"
] | bad_ghost2005@hotmail.com |
e073062f19b69398d247cb2bd52b8ede6d011dc3 | baec37f863bffd8499961ca594240a3c5ced9c17 | /LISTA_RECURSÃO/arquivo_headers.h | 75294235eb3832de30bef2947c814b0347de3dcd | [] | no_license | paesdj1987/INF029-JOAOPAES | 1a814534a3eeafae982c2d8155aa7561b3cb4d0f | a17389f3e110f8bee41e04a1a92cd073896805b1 | refs/heads/main | 2023-05-27T23:58:02.416142 | 2021-06-17T01:05:19 | 2021-06-17T01:05:19 | 342,607,203 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 599 | h | #ifndef ARQUIVO_HEADERS_H_INCLUDED
#define ARQUIVO_HEADERS_H_INCLUDED
#endif // ARQUIVO_HEADERS_H_INCLUDED
//funções
double fatorial(int num);
int fibonacci (int n);
int inverterNumero(int num);
int somaNumero (int vet[], int tam);
int somatorio(int n);
int potencia (int k, int n);
int mdc(int x, ... | [
"noreply@github.com"
] | paesdj1987.noreply@github.com |
6992b829b7e34b23584dacc2c7ee63277cd7013e | d28e32b527bc3b5aa95d49b828985b128fee5615 | /elibs/libc/misc/pub1/reg/reg.c | 28a8451b515707e7a8d425b2794bcaa2b0b795bd | [] | no_license | prtemly/quanzhiwork | 6f810484e9f21c122450f2d4f63bda231caa1d95 | af22227f4965c5b1094c135ebb1a219b05f1a6e4 | refs/heads/master | 2021-08-15T03:50:55.662058 | 2017-11-17T08:38:35 | 2017-11-17T08:38:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 26,075 | c | /*
************************************************************************************************************************
* REGISTER TABLE
*
* Copyright(C), 2006-2008, SoftWinners Microelectronic Co., Ltd.
* All Rights Re... | [
"zhibo@joyhonest.com"
] | zhibo@joyhonest.com |
457d7c2690dfd46ce988add9e8a0eab0a6f53d13 | 5c5a916c937c1163aa8dd69d115173586147d891 | /Temp/Piece/supervisor.c | e0b2c903ca60f8e3f1709cbb60c6e8e17e6f1594 | [] | no_license | tommwq/demo | 37b1214064d6047f3dc6e036fc35638912cb4026 | a010a3fe77cd07cc1c4dbf9480fb584107311352 | refs/heads/master | 2023-05-12T23:21:38.812957 | 2021-07-15T16:06:13 | 2021-07-15T16:06:13 | 164,401,887 | 1 | 0 | null | 2023-05-05T02:24:12 | 2019-01-07T08:34:37 | HTML | UTF-8 | C | false | false | 1,355 | c | /**
* supervisor.c
* supervisor示例。
*/
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
int main(int argc, char **argv){
int log_fd = open("start_log", O_WRONLY | O_APPEND | O_CREAT);
write(log_fd, arg... | [
"wangqian2@guosen.com.cn"
] | wangqian2@guosen.com.cn |
7bcda18b21c0592b77f0b42b3ffeb88e74ae9d7e | cca1300d141e8dfbb8e0cae23c8c99c0adb1f194 | /Factors_Operations/MultFact/Header.h | a710b785d3f0861e85d4b46b92e9fe78055f7f6f | [] | no_license | Shubham1744/My_C_Programs_Basic_To_Advance | 6d81fe48cb82cbfaa08860f12a0fb70fc1210856 | fa203159228e1a5bcdd828d546bc238afbee26e2 | refs/heads/master | 2023-01-29T23:43:38.326299 | 2020-12-13T17:53:15 | 2020-12-13T17:53:15 | 299,208,343 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 37 | h | #include<stdio.h>
int MultFact(int);
| [
"66161577+Shubham1744@users.noreply.github.com"
] | 66161577+Shubham1744@users.noreply.github.com |
8fa22346c63fcc7eb0c1f736bf000b875ae444ae | cbd3b86d85a78c95e07ffcfd80cf9a0b81037ca1 | /event.c | 9f76f7a03a4f9cf3c6afc49de34a9c09aa29e89e | [] | no_license | chengxuyuanshujian/StarTravel | 0f00fda0c40170e2e5c510a39b7b2bc22881e72b | cdb30bbf8762b07e4ad47b1010abd1aa3994901e | refs/heads/master | 2021-01-24T04:34:58.413571 | 2016-01-30T03:01:53 | 2016-01-30T03:01:53 | 50,706,866 | 1 | 0 | null | 2016-01-30T03:28:54 | 2016-01-30T03:28:54 | null | UTF-8 | C | false | false | 103 | c | #include <stdio.h>
void foo(void) {
printf("This is event handling function!\n");
return 0;
}
| [
"dorayo@dorayo.com"
] | dorayo@dorayo.com |
f7934126ef3fbbd1930a4ba70c843707ac2d37cf | be3be6bc0a4d0e9798d4c6e4ac1829c32778a77d | /tp3/p8b.c | 181a75dad85eb38d4e4ccd3ff6f873233668155d | [
"MIT"
] | permissive | luist18/feup-sope | 76d428078fb3592d43b5639055fa0ca2eba3483d | 873986862b41380e05f304b3418474b7ef42f6b1 | refs/heads/master | 2021-02-07T17:09:10.963464 | 2020-04-27T11:40:55 | 2020-04-27T11:40:55 | 244,055,014 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 564 | c | #include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <stdlib.h>
int main(int argc, char *argv[], char *envp[])
{
pid_t pid;
if (argc != 2)
{
printf("usage: %s dirname\n", argv[0]);
exit(1);
}
pid = fork();
if (pid > 0)
printf("My ... | [
"luistavares10@outlook.pt"
] | luistavares10@outlook.pt |
bf3de0a3b645a32baf69cca30a7ddefb26c95ac9 | e4903b9e34d16f034f94f2eeef8e0107205b7001 | /shell.c | 5171ffc77e31311604fb3346606d7662d2899148 | [] | no_license | georgedunnery/Mini_Shell | 306ab835d62cb43637823f0c0181d1573208ad80 | 105c0eb04a4f688c72fe5fd9019790d5afd4747c | refs/heads/master | 2020-06-24T23:51:58.015795 | 2019-07-27T07:18:49 | 2019-07-27T07:18:49 | 199,130,773 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 18,251 | c | // George Dunnery
// CS 5007 - Assignment 3 - Mini Shell
#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <time.h>
// Use char array[BUFFER_SIZE + 1] to get 80 characters plus null terminator
#define BUFFER_SIZE 80... | [
"46580745+georgedunnery@users.noreply.github.com"
] | 46580745+georgedunnery@users.noreply.github.com |
ce0c471c679b249abdf7abe6457b87b162953d00 | b44f265e17a339e8e2e7846ce48580ae18349602 | /src/build-dep.c | 5578088443a29fce81322e7646bc1a288adefd0f | [
"ISC",
"LicenseRef-scancode-public-domain"
] | permissive | mikesmiffy128/build | 5e0c67d142fed41202773568320850a4bffa4d9f | 857edebacde2957fe94c0d9968ed2f5739a8259b | refs/heads/master | 2023-05-06T19:34:07.789823 | 2021-05-07T20:22:13 | 2021-05-07T20:22:13 | 347,172,018 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,700 | c | /*
* Copyright © 2021 Michael Smith <mikesmiffy128@gmail.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS ... | [
"mikesmiffy128@gmail.com"
] | mikesmiffy128@gmail.com |
a0a423d97539e3a0b4700881ac2f087bc191e3a9 | dbe193d77722797bb677b88a819528d5baf39865 | /poly.h | 6998cb4c71908e8a8e12ca70f1155e3fb70a851e | [] | no_license | euugenechou/gfsecretsharer | a05095f26e05425d4aacd020b118fd0b1b08550b | 15a53fb924072017c1f7d6773e2189a4649d0ae0 | refs/heads/master | 2022-04-01T13:21:41.740881 | 2020-01-27T05:55:48 | 2020-01-27T05:55:48 | 236,239,710 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 419 | h | #ifndef __POLY_H__
#define __POLY_H__
#include "galois.h"
#include <inttypes.h>
typedef struct Polynomial {
GF8_t *coeffs;
GF8_t degree;
} Polynomial;
Polynomial *polynomial_create(GF8_t degree, GF8_t secret);
void polynomial_delete(Polynomial *p);
GF8_t polynomial_eval(Polynomial *p, GF8_t x);
GF8_t polynomi... | [
"euchou@ucsc.edu"
] | euchou@ucsc.edu |
1dc3dfc1a17f81335743a072b68bc32eac475d49 | 83d4f4373f9ef32d9dd9ea801c07483f6f9f26ee | /code/box_master-v8-降低速度-联动/box_master/control.c | dd64cacde09b0cd2a8d3365d3f9bf54d3b657400 | [] | no_license | dh-linghaibin/key_box | e254825cc226f67516782ce4058d9d0e216cdc17 | 7c8939c677fd8be877cd6b691934ce5aa3eb5485 | refs/heads/master | 2021-05-10T21:57:35.746874 | 2018-03-19T11:57:39 | 2018-03-19T11:57:39 | 118,244,993 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 22,371 | c | /***********************************************************
* 文档: control.c
* 作者: Haibin Ling
* 描述: 1.
* 2.
***********************************************************/
#include "type.h"
/*按键定义*/
#define adr_4 PC_IDR_IDR7
#define adr_3 PG_IDR_IDR0
#define adr_2 PG_IDR_IDR1
#define adr_1 PE_IDR_IDR3
/*光耦阻挡检测IO... | [
"a673576000@qq.com"
] | a673576000@qq.com |
70b6deb8a702496194a3d70f164fe0d3440bf93e | 482e62f19c4f6d127890da91108b2925a7594538 | /pintos/src/tests/userprog/child-rox.c | ad558075bdf22cba811bac7b3e532c511ce46b6e | [
"LicenseRef-scancode-unknown-license-reference",
"MIT-Modern-Variant",
"MIT"
] | permissive | a1b3rtchang/PintOS | 95ec0c7eadda417b0fb4e6d763751f1d55ff1a1b | 59fc023a60ffe6760a67a23c7bff99c2b72ccce5 | refs/heads/master | 2023-07-13T09:18:28.203009 | 2021-08-23T22:12:28 | 2021-08-23T22:12:28 | 398,863,564 | 4 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,117 | c | /* Child process run by rox-child and rox-multichild tests.
Opens and tries to write to its own executable, verifying that
that is disallowed.
Then recursively executes itself to the depth indicated by the
first command-line argument. */
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <s... | [
"kevin_svetlitski@berkeley.edu"
] | kevin_svetlitski@berkeley.edu |
8d28d819fa66a14cf0cc9ff66c7041c3d2105686 | 8f0a879ee04d9e95751ae645eb35fa171169756f | /source/Config.h | 6612c1c5ea1f3d443584fa36a867d5b6cd8d579b | [] | no_license | ksamp666/rectangle | 4dfbdfd4b626604c1c6179e4b6a271d4674ec747 | 53ca2efeca727273a805f7aa958df9809970a130 | refs/heads/master | 2021-05-19T11:34:59.055174 | 2020-03-31T17:27:46 | 2020-03-31T17:27:46 | 251,677,658 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 706 | h | //
// Created by Семен Копаниров on 2020-03-28.
//
#ifndef RECTANGLE_CONFIG_H
#define RECTANGLE_CONFIG_H
#define FAKED_RENDER_TIME_MIN 10
#define FAKED_RENDER_TIME_MAX 100
#define FAKED_RENDER_TIME_MEDIAN 33
#define ROTATION_SPEED_MIN 50
#define ROTATION_SPEED_MAX 150
#define WINDOW_TITLE "Rectangle"
#define WINDOW_W... | [
""
] | |
eacfbfa6fc13fe938702ffb6e642b7514c557ff7 | a7db99edb870edea2be1ab7ec40ffa0cf8e29213 | /programming/asm/Assembly_LC4/HAYMAKER_JOSEPH_HW8/problem1.c | 304b971414678a1e978a201eeaeb0af42285e56c | [] | no_license | Ladybirdff/Work-Samples | 0a79e1b553e37838550490b63fcf2e258ed8fc77 | 300b0de60fe6dea0e733fe7b1ed74c7b41a863b0 | refs/heads/master | 2022-09-26T02:27:16.762623 | 2020-06-08T01:52:41 | 2020-06-08T01:52:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 93 | c | int main() {
int a = 5 ;
int b = 0 ;
b = SUB_FACTORIAL(a) ;
return (0) ;
}
| [
"josephhaymaker@Josephs-MacBook-Pro.local"
] | josephhaymaker@Josephs-MacBook-Pro.local |
c616b2219670dd884f01db216fe602ebe967a989 | 249839bed8656b791449ba3b0665a7bebceb9130 | /vim/src/fold_c/fold_AICC_10.c | 0c6a1b7a1f3db10ed18fbf247a1ab13f6e2078ec | [] | no_license | marcioaug/mutants | b597cf8d461f8e3d608765bcb766dc818a616575 | 41d65ac1c2c8a4feddaae473cbf58d3846617f99 | refs/heads/master | 2021-01-21T22:34:41.131530 | 2017-10-19T01:53:10 | 2017-10-19T01:53:10 | 102,151,857 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 92,249 | c | /* vi:set ts=8 sts=4 sw=4 noet:
* vim600:fdm=marker fdl=1 fdc=3:
*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.txt for an overview of the Vim source code.
*/
/*
* fol... | [
"marcioaugustosg@gmail.com"
] | marcioaugustosg@gmail.com |
2a908ba758d64ed8e4ee4902c44fe5f4910552cb | 104aaed99c6a8e8ef3febaf6f473121a4fc2d3f2 | /tigress-generated-programs/empty-Seed1-RandomFuns-Type_long-ControlStructures_14-BB1-ForBound_input-Operators_PlusA_MinusA_Lt_Gt_Le_Ge_Eq_Ne.c | 94530b2eea9530f565d2c35e35108c884c66e72c | [
"MIT"
] | permissive | WillJohn/obfuscation-benchmarks | 528dd152e5e9a11571ae95a54040451d07c8805c | d11452ffb3ec7418a462f65d4034f9f1474136c8 | refs/heads/master | 2020-07-12T12:36:10.069207 | 2018-02-25T15:15:07 | 2018-02-25T15:15:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,385 | c | /* Generated by CIL v. 1.7.0 */
/* print_CIL_Input is false */
struct _IO_FILE;
struct timeval;
extern float strtof(char const *str , char const *endptr ) ;
extern void signal(int sig , void *func ) ;
typedef struct _IO_FILE FILE;
extern int atoi(char const *s ) ;
extern double strtod(char const *str , char co... | [
"banescusebi@gmail.com"
] | banescusebi@gmail.com |
1abc94e8cb430a14adf6e605aefc27976cbb495e | 756cb37338b8a2ff0d40237d7fe699fd234eff9e | /intern/struct_union/padding_test.c | a67c6ab681f2236066200c956ee6e875766d1af9 | [] | no_license | sivaraam/c | bb9623aae113a94c0f4cc3ea0984ea1aa2da66e4 | cdd2df53f2927a137f5d624fa89cd15bd89ae101 | refs/heads/master | 2022-01-25T10:55:49.469214 | 2019-05-31T08:35:46 | 2019-05-31T08:49:49 | 111,208,061 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,287 | c | #include <stdio.h>
int main(void)
{
struct one_char
{
char a;
};
printf("struct one_char:\t sizeof(): %zu\t _Alignof(): %zu\n", sizeof(struct one_char), _Alignof(struct one_char));
struct chars
{
char a;
char b;
char c;
};
printf("struct chars:\t\t sizeof(): %zu\t _Alignof(): %zu\n", sizeof(struct ... | [
"kaartic.sivaraam@gmail.com"
] | kaartic.sivaraam@gmail.com |
c601d11f207e8cd345bfb86e8839a69bd751ce67 | 21e0a60df446afc730c21c54178c3651b02ccf17 | /EBTMini/BlueZone/Include/BZS_Connect.h | a3c0344e1e106091617e0ae5cf2389f20f2c969a | [] | no_license | hugo-hong/ceproject | 275a09f9c5c704f134ea7d0f25a82cc78536cb69 | 839531387cc45e1d95bf453810ac4e0460cb34b8 | refs/heads/master | 2020-03-28T03:59:23.644124 | 2018-09-06T14:48:59 | 2018-09-06T14:48:59 | 147,687,393 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,814 | h | /*****************************************************************************
* Copyright Statement:
* --------------------
* This software is protected by copyright and the information contained
* herein is confidential. The software may not be copied and the information
* contained herein may not be used ... | [
"hugo.08@live.cn"
] | hugo.08@live.cn |
421d7eaec8e9fcba36080792af1dbebff7697091 | ee617b9234abbf7325d3f9670a72d7af6df7b108 | /Sources/CNIOBoringSSL/crypto/fipsmodule/modes/cfb.c | 560338907cc634405e0aee4f9e594685b6a2e768 | [
"OpenSSL",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ZeroInfinite/swift-nio-ssl | 02d7deed65a91781ed6e93996e06dd934929f7a1 | 45b1f826922c08280b0d87156b96bba5b7d19a08 | refs/heads/master | 2020-04-26T09:09:03.356537 | 2019-03-01T17:25:33 | 2019-03-01T17:25:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,595 | c | /* ====================================================================
* Copyright (c) 2008 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of ... | [
"johannesweiss@apple.com"
] | johannesweiss@apple.com |
186ca3eed228ce9b5e806cdc3b6085eeeac1117b | 6510bd36f5f587b9f66d24df65993004e717a544 | /oroca_bldc_FW/lib/mavlink/common/mavlink_msg_set_gps_global_origin.h | 90c6f36f4ba54399e3a8f69730445d5c11349481 | [
"MIT"
] | permissive | chandong83/oroca_bldc_dev | ddf5ee8f87321fd926d27fcc7ecb938eeaa5e515 | 8d2ec99a088fd7865e5f1e3f4303ca916a1d178d | refs/heads/master | 2020-03-26T20:53:39.086875 | 2016-05-25T11:39:08 | 2016-05-25T11:39:08 | 145,352,993 | 1 | 0 | null | 2018-08-20T01:49:20 | 2018-08-20T01:49:20 | null | UTF-8 | C | false | false | 11,924 | h | // MESSAGE SET_GPS_GLOBAL_ORIGIN PACKING
#define MAVLINK_MSG_ID_SET_GPS_GLOBAL_ORIGIN 48
typedef struct __mavlink_set_gps_global_origin_t
{
int32_t latitude; /*< Latitude (WGS84), in degrees * 1E7*/
int32_t longitude; /*< Longitude (WGS84, in degrees * 1E7*/
int32_t altitude; /*< Altitude (AMSL), in meters... | [
"chcbaram@paran.com"
] | chcbaram@paran.com |
7bc6687b0322ffc9d9eaf22ce0d150fd161d2979 | 1efd2de8bf77ec00eb2fcaf5749278495946d920 | /src/include/daos_pool.h | ab27f2c38be8fcec33abe756cf7aadcad22b2937 | [
"BSD-2-Clause",
"BSD-2-Clause-Patent"
] | permissive | daos-stack/daos | 6f55bf3061fd830d5b8d28506e1295e2d3a27c38 | ed5eed5df43a68571afe123132a743824c02637a | refs/heads/master | 2023-08-31T21:43:37.606145 | 2023-08-31T16:38:00 | 2023-08-31T16:38:00 | 69,390,670 | 631 | 300 | NOASSERTION | 2023-09-14T18:55:15 | 2016-09-27T19:21:29 | C | UTF-8 | C | false | false | 20,717 | h | /**
* (C) Copyright 2020-2023 Intel Corporation.
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
*/
/**
* DAOS storage pool types and functions
*/
#ifndef __DAOS_POOL_H__
#define __DAOS_POOL_H__
#define daos_pool_connect daos_pool_connect2
#if defined(__cplusplus)
extern "C" {
#endif
/** Type of storage targe... | [
"noreply@github.com"
] | daos-stack.noreply@github.com |
420343d06073fe7a8add82432a9758e6dac10a28 | c8af301d2af9e7f365e736be6abcc333ff9bdda2 | /pagerank.h | 947cdfdcdaec711307c6436aa73214a32eff1fdf | [] | no_license | luiszengii/rankpage-using-pthread- | b74514f1fd02b30cfa2a0f92b49a5158c160662a | 3fb159fb25a9dc8624418c22d7c3b2bfe5f03108 | refs/heads/main | 2023-08-23T06:27:28.100487 | 2021-10-13T11:59:23 | 2021-10-13T11:59:23 | 416,681,996 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,357 | h | /*
* header file for SOFT3410 assignment one - "pagerank"
*
* DO NOT MODIFY THIS HEADER FILE
*/
#ifndef __PAGERANK_H
#define __PAGERANK_H
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#define EPSILON 5E-3
#define NAME_SIZE 21
#define BUFFER_SIZE 101
/* forward... | [
"lzen9557@uni.sydney.edu.au"
] | lzen9557@uni.sydney.edu.au |
73e00e2d21579143bc635cb2c6c975b564128e1e | f4f7dfa0a8ebeb815919a7126f821b2739ca022a | /21_uniao_e_busca/heap.h | 96384d2fb74a111f3112e902e47df2e143ae3380 | [
"Apache-2.0"
] | permissive | daltonvlm/estruturas-de-dados | 7bf16652a8df4c9e32bb7dd2b3ce401041c23a0f | 3e8e845d94471fa2ab6d0414a7de59ccb800701c | refs/heads/master | 2022-09-17T01:42:46.291995 | 2022-08-27T06:59:23 | 2022-08-27T06:59:23 | 144,902,363 | 29 | 6 | null | null | null | null | UTF-8 | C | false | false | 393 | h | #ifndef HEAP_H
#define HEAP_H
typedef struct heap Heap;
Heap *heap_cria(int (*cmp) (const void *v1, const void *v2));
Heap *heap_constroi(int n, void **v,
int (*cmp) (const void *v1, const void *v2));
void heap_libera(Heap * h, void (*libera) (void *));
int heap_vazia(Heap * h);
void heap_insere(Heap * h, void *... | [
"daltonvlm@gmail.com"
] | daltonvlm@gmail.com |
1953d862d04c10c37149caabe156cfc43db5ab9d | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE190_Integer_Overflow/s02/CWE190_Integer_Overflow__int64_t_max_multiply_53d.c | 642e73d87d08d12d5cf5a218b3cc2bf0908e0259 | [] | no_license | junxzm1990/ASAN-- | 0056a341b8537142e10373c8417f27d7825ad89b | ca96e46422407a55bed4aa551a6ad28ec1eeef4e | refs/heads/master | 2022-08-02T15:38:56.286555 | 2022-06-16T22:19:54 | 2022-06-16T22:19:54 | 408,238,453 | 74 | 13 | null | 2022-06-16T22:19:55 | 2021-09-19T21:14:59 | null | UTF-8 | C | false | false | 2,044 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE190_Integer_Overflow__int64_t_max_multiply_53d.c
Label Definition File: CWE190_Integer_Overflow.label.xml
Template File: sources-sinks-53d.tmpl.c
*/
/*
* @description
* CWE: 190 Integer Overflow
* BadSource: max Set data to the max value for int64_t
* GoodSo... | [
"yzhang0701@gmail.com"
] | yzhang0701@gmail.com |
44c7a570aacf2545db070012c68fb061362dffb9 | f0066a7d379c1246ae4afeee3ab982adc93c24d9 | /app/src/app_buzzer.c | c666d56712b7d67416d31c342194d94dcc4a019a | [
"Apache-2.0"
] | permissive | claymodel/ly10-zephyr-fw | 616919d754f9a0372832033a5075f4f91fcaa965 | 8be4bea8a14a01b2f7e9808c01394ae1a0c53cbc | refs/heads/master | 2021-03-06T21:34:02.923535 | 2020-02-27T04:45:02 | 2020-02-27T04:45:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,621 | c | //
// Copyright (c) 2019 Blue Clover Devices
//
// SPDX-License-Identifier: Apache-2.0
//
/* app_buzzer.c - Buzzer interface */
#include <zephyr.h>
#include <device.h>
#include <drivers/pwm.h>
#define PERIOD_INIT 1500
#define BUZZER_PIN 22
#define BEEP_DURATION K_MSEC(10)
#define PAUSE_DURATION K_MSEC(1)
#d... | [
"noreply@github.com"
] | claymodel.noreply@github.com |
7f301c3d24481e9963dd2b481d8e3d52c34d779d | 02dcbed2157069ded5575113f2e194240f4b2b53 | /libcrypt.h | dfcc89af3a298757173f99b348149e89ea3390e1 | [] | no_license | stonytjd/libcrypt_android | 1dde19b4ab8d9ff8185e21d86bf873cac8bb0d2b | e17ec160b7fca353035ffe38bc7749d55f239fee | refs/heads/master | 2021-05-28T04:31:22.492099 | 2014-08-26T06:42:16 | 2014-08-26T06:42:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,581 | h | /* prototypes for internal crypt functions
*
* Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#ifndef __LIBCRYPT_H__
#define __LIBCRYPT_H__
#if 0
extern char *__md5_crypt(const unsigned char *pw, const unsigned char *s... | [
"tjd@revoview.com"
] | tjd@revoview.com |
858a6d2998b0e6c6ccdba281923e63493abf52c2 | 7eaf54a78c9e2117247cb2ab6d3a0c20719ba700 | /SOFTWARE/A64-TERES/linux-a64/arch/x86/platform/scx200/scx200_32.c | 3dc9aee41d913de3c59a3c04fee8dac814467ca5 | [
"Linux-syscall-note",
"GPL-2.0-only",
"GPL-1.0-or-later",
"LicenseRef-scancode-free-unknown",
"Apache-2.0"
] | permissive | OLIMEX/DIY-LAPTOP | ae82f4ee79c641d9aee444db9a75f3f6709afa92 | a3fafd1309135650bab27f5eafc0c32bc3ca74ee | refs/heads/rel3 | 2023-08-04T01:54:19.483792 | 2023-04-03T07:18:12 | 2023-04-03T07:18:12 | 80,094,055 | 507 | 92 | Apache-2.0 | 2023-04-03T07:05:59 | 2017-01-26T07:25:50 | C | UTF-8 | C | false | false | 3,194 | c | /*
* Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com>
*
* National Semiconductor SCx200 support.
*/
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/mutex.h>
#include <linux/pci.h>
#include <linux/scx200.h>
#include <linux/scx... | [
"gamishev@gmail.com"
] | gamishev@gmail.com |
40c9ad8ad372c8524b6c5ea589a051e9ec742598 | ed80834b4b13154b048ab8582f3fb23ea26989db | /TMP/register.c | 07201163f601e438057dc5d00545656c5b243e71 | [] | no_license | ansontsang1112/ICP-Project | 85f9b6e90d9c02556edcbf014e837a123dba42ed | 60a4dd9cf1531e008ea863b1e59f259615f34553 | refs/heads/master | 2021-10-07T20:43:26.270782 | 2018-12-05T07:56:08 | 2018-12-05T07:56:08 | 156,583,902 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,495 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
#include <dirent.h>
#include <limits.h>
#include <unistd.h>
struct DATA {
char username[50];
char passsword[50];
int permission;
int money;
} data;
void ini() {
printf("*** HKUSPACE IRMS User Account Creation System ... | [
"ansont1112@gmail.com"
] | ansont1112@gmail.com |
b7c88a1e40763ee7d7776cc52758f03af756a9fa | f3277b1c41eb85f4cf04ea0a3c1518700874dd50 | /1st-term/Basic Computer Programming/Lecture 3/example6.c | 273ba8013cdf6250bcb2a967e8266f6e7d666473 | [
"MIT"
] | permissive | ntcho/CAU2019 | 645de6d95963328e2ba2a7e1f76546fa65b8c805 | c8c462190fcf3ece0d8fa6159a45566c9db93b28 | refs/heads/master | 2022-03-01T18:53:57.651574 | 2019-11-04T16:50:16 | 2019-11-04T16:50:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 119 | c | #include <stdio.h>
int main() {
int a, b, c;
a = 2;
b = 7;
c = (a > b) ? a : b;
printf("%d\n", c);
return 0;
} | [
"dev.bedrock@gmail.com"
] | dev.bedrock@gmail.com |
7d820e0b14f1074db9584fbb3727a99a3bc32259 | 84660a07a36d53e09dc7cc34b4212c0a11e4a1e0 | /format.c | 570ba66fd4112d5e2cdf2f3177a2a0c2138e7b60 | [] | no_license | jetownle/fillit | 27f62e4cad2cdd9c2f96d43d898e5da70d3531e1 | a4c01ae5c5e3715c1cd7bfdfcfdbf00fac8b6dbd | refs/heads/master | 2020-07-02T14:36:48.214196 | 2019-08-10T00:45:50 | 2019-08-10T00:45:50 | 201,559,237 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,812 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* format.c :+: :+: :+: ... | [
"jetownle@e1z1r6p40.42.us.org"
] | jetownle@e1z1r6p40.42.us.org |
0185e675719ee213f23e89b3850b22a86618f0d1 | fe692881320e10c55962cebd165d478c1434c359 | /item/product/64353.c | 3ff19f10fecdd3784cb25f238e267ab4f9566638 | [] | no_license | anho9339/chienquoc | 130602c90c43053bbc99dfbfbc877de0b2d81dd7 | cb5157d5eabcb4bb2ff71c292cfbdd5dc5fbb221 | refs/heads/master | 2021-07-04T07:51:49.408023 | 2021-02-01T15:15:58 | 2021-02-01T15:15:58 | 222,929,950 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,008 | c |
// 自动生成:/make/item/make90
#include <item.h>
inherit ITEM;
inherit USABLE;
// 函数:图纸序号
int get_product_type() { return 353; }
// 函数:图纸要求技能
int get_product_skill() { return 640; }
// 函数:图纸要求类别
int get_product_sort() { return 0; }
// 函数:图纸要求等级
int get_product_level() { return 50; }
// 函数:图纸要求熟练度
int get_product_exp()... | [
"hothienan1993@gmail.com"
] | hothienan1993@gmail.com |
e976ebf763efd15ce45ad0b68eb151ad6a1c058f | b66b60f2617ea84fc0b8216b2cdd728dea2e0657 | /algo-1-001/pushswap/srcs/printf/ft_deal_with_conversions.c | 1b93f1185163e15940f8204836a436e8fbe0d661 | [] | no_license | rgary87/42 | 648043c7174c421f07277ecf599187b4699062f7 | 44f6d6082e3f740302e5dd99637db93def38f34d | refs/heads/master | 2021-11-22T21:46:11.806193 | 2014-02-22T17:25:29 | 2014-02-22T17:25:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,045 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_deal_with_conversions.c :+: :+: :+: ... | [
"rgary@e3r7p19.42.fr"
] | rgary@e3r7p19.42.fr |
66d419c7e8e8ff318f4358574d1a36ebd13ca1e1 | 6b03ff07253e86d14576199d812d473d3a7d456b | /lz11_lib/main.c | 8ca01e0e16d43be5630a04c0ef79bd9e21e48c8b | [] | no_license | pmodel/GE3-Extractor | d0122544c44e5b9d114b808656b8ce12efc34375 | 8d467a3a9bcc0238de0ec030eda4426441020d5e | refs/heads/master | 2023-04-05T09:21:43.718261 | 2021-04-07T13:47:25 | 2021-04-07T13:47:25 | 355,545,000 | 7 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,439 | c | /*----------------------------------------------------------
* ActiveBasic to C Transformation helper v0.0
* PROGRAMMED BY RGBA_CRT 2018-10
*----------------------------------------------------------*/
#include <stdint.h>
#include <stdbool.h>
#include <windows.h>
#include <stdio.h>
#i... | [
"rgba3crt1p@gmail.com"
] | rgba3crt1p@gmail.com |
c2898b9a3635d01219e01eae4a8b3a88f058e887 | c47c254ca476c1f9969f8f3e89acb4d0618c14b6 | /datasets/linux-4.11-rc3/include/linux/dns_resolver.h | 6ac3cad9aef109171a5882ee2c5afb30e230c8d4 | [
"Linux-syscall-note",
"GPL-2.0-only",
"BSD-2-Clause"
] | permissive | yijunyu/demo | 5cf4e83f585254a28b31c4a050630b8f661a90c8 | 11c0c84081a3181494b9c469bda42a313c457ad2 | refs/heads/master | 2023-02-22T09:00:12.023083 | 2021-01-25T16:51:40 | 2021-01-25T16:51:40 | 175,939,000 | 3 | 6 | BSD-2-Clause | 2021-01-09T23:00:12 | 2019-03-16T07:13:00 | C | UTF-8 | C | false | false | 1,339 | h | /*
* DNS Resolver upcall management for CIFS DFS and AFS
* Handles host name to IP address resolution and DNS query for AFSDB RR.
*
* Copyright (c) International Business Machines Corp., 2008
* Author(s): Steve French (sfrench@us.ibm.com)
* Wang Lei (wang840925@gmail.com)
*
* This librar... | [
"y.yu@open.ac.uk"
] | y.yu@open.ac.uk |
9db4002a03412760695f1d1c1135c322ec24a89e | 43aaf916eff940549add4c2b1f1dc8e01b712bbe | /Coding lab/Week3/lab3task3.c | adc10c037876054b97036f06b34b567ad259e687 | [] | no_license | tara-nguyen/software-development | 474ccdc342e1690e9068e8c987198ea961b118d2 | 17e8c56f540dddf37102f9daf91f53fc6d7b3f5f | refs/heads/main | 2023-02-12T08:25:41.077868 | 2020-12-31T19:50:17 | 2020-12-31T19:50:17 | 310,952,249 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,079 | c | /* UCLA Extension
Fundamentals of Software Development
Coding lab 3 (October 12th, 2020)
Lab participants: Tara, Judy, & Shi
Task 3
*/
// Include files
#include <stdio.h>
// Variable declarations
char name[13]; // user name
int age; // user age
float max_sbp; // maximum systol... | [
"noreply@github.com"
] | tara-nguyen.noreply@github.com |
ca75a458e76d8a0d5c414b656ea0ff0db1321804 | 662569d3be1d09274d9583e9d4ca9a5d0ef57ef3 | /crypton.c | 21d09607b8b570f9d9ec23f0dc8883896ccfec71 | [] | no_license | arun-geek/spoj | 6db2205d7c0c319793f7db56096739491aa634f3 | ce944b775a1b5f4ce8891b7974fe99e5e8aba9c8 | refs/heads/master | 2021-01-14T12:44:52.779164 | 2014-01-07T07:10:15 | 2014-01-07T07:10:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,155 | c | #include<stdio.h>
#include<string.h>
#include<math.h>
int divide(int key[],int prime, int size)
{
int i,rem=0,temp=prime,digits=0;
while(temp>0)
{
temp=temp/10;
digits++;
}
i = digits-1;
while(i>=0)
{
rem+=key[digits-1-i]*pow(10,i);
i--;
}
i = digits;
rem = rem%prime;
while(i<size)
{
rem = rem*10 + key[... | [
"arihant@arihant.(none)"
] | arihant@arihant.(none) |
11df43a9d1196dacde5fd3359cee4c635b35f6ff | 09c2fee1613c9ab21cd4097656fe30d798eca6fd | /eathena/src/map/itemdb.c | d589e3593df28ee22bbb39156bb01e9b32243e05 | [] | no_license | diogorbg/tmw-br-dev | 9259c241faaea59e20f15615f80c36c5b0aace82 | 688064072fa07a142b8f08c8469e3289d7e14975 | refs/heads/master | 2021-01-10T12:05:33.141901 | 2012-02-02T23:59:21 | 2012-02-02T23:59:21 | 50,342,400 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 18,861 | c | // $Id: itemdb.c,v 1.3 2004/09/25 05:32:18 MouseJstr Exp $
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "db.h"
#include "grfio.h"
#include "nullpo.h"
#include "malloc.h"
#include "map.h"
#include "battle.h"
#include "itemdb.h"
#include "script.h"
#include "pc.h"
#include "../common/socket.h"
#i... | [
"diogorbg@30d2d5f8-7146-11de-9fe7-95ad066c2d19"
] | diogorbg@30d2d5f8-7146-11de-9fe7-95ad066c2d19 |
024d28371dc6114ff3ef204dbe0c52261ef8ad4b | 0f61234cf56c92e5256bd10111351ea4d4ffd0f2 | /TestAutoCAD/Ctx.c | 0986fc0d8fbecb64eb35ff7bd185235593eee3ad | [] | no_license | JokerMars/TestAutoCAD | 4fde00f2da4f8282453e75c9676ec90c5fbde44e | 3ab12b74af92952190386db0d62bca11cbdde108 | refs/heads/master | 2021-01-12T08:54:28.109738 | 2016-12-20T06:45:42 | 2016-12-20T06:45:42 | 76,623,213 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,827 | c | #include "Ctx.h"
static NTSTATUS iCtx_CreateStreamContext(PFLT_RELATED_OBJECTS FltObjects, PSTREAM_CONTEXT *StreamContext);
VOID
SC_LOCK(PSTREAM_CONTEXT SC, PKIRQL OldIrql)
{
if (KeGetCurrentIrql() <= APC_LEVEL)
{
SC_iLOCK(SC->Resource);
}
else
{
KeAcquireSpinLock(&SC->Resource1, OldIrql);
}
}
VOID
SC_UN... | [
"Little@DESKTOP-9K91L1P"
] | Little@DESKTOP-9K91L1P |
306b3b7aac2df649bc8c9b1f40bf99d0bee5bb71 | 1ce53b371606bdc649fe61bfd157fbc64823e4b9 | /SkyOS++/lib/ohci/controller.c | 409da13d90699cb4aeae26ee3e468d51c1f87dc2 | [] | no_license | fcccode/SkyOS2.0 | 19212759e03a6faad77a0524404ca889c8e43816 | 7342ea5fff8c7180393a406c939ca32616711fe6 | refs/heads/master | 2023-02-05T13:39:41.314295 | 2020-12-28T11:45:56 | 2020-12-28T11:45:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 17,501 | c | /* MollenOS
*
* Copyright 2011 - 2017, Philip Meulengracht
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ? , either version 3 of the License, or
* (at your option) any later version... | [
"juhang3@daum.net"
] | juhang3@daum.net |
0834968067f89a26979fbe8eef38223b0dcae40c | 493a8b9dfc6b0a058515aad57561d28435861206 | /Project 3/Code Files/values.h | 5df6a963af27ef785eb53e63d62a8aca06721ab8 | [] | no_license | BenjaminSutter/Lexical-Analyzer | e8f36960b544681eed7a21cf2fc642fe50f1154b | 4140f6bc0b59273a2af129d7f194387e10a41bd2 | refs/heads/main | 2023-07-06T21:09:38.538019 | 2021-08-06T16:57:56 | 2021-08-06T16:57:56 | 353,809,418 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 658 | h | /*
Name: Ben Sutter
Date: April 22nd, 2021
Class: CMSC 430
Purpose: Changed parameters from ints to doubles. Added more operators, and added evaluateBoolean and evaluateReal.
*/
typedef char* CharPtr;
enum Operators {LESS, ADD, MULTIPLY, EQUALS, DOESNOTEQUAL, GREATER, EQUALORGREATER, EQUALORLESS, SUBTRACT, DIVIDE, REM... | [
"65268729+Broccolimonkey@users.noreply.github.com"
] | 65268729+Broccolimonkey@users.noreply.github.com |
4a83f22de116c7d7651225a0f5db28cc745c4d2f | 722f7e0b8bc1d53094a939d1d48750628e4d8a91 | /equipment.c | 687977eba8f13abd572262a4259811c7e2653615 | [] | no_license | PurplePachyderm/lorawan-simulation | 61d997394dce0f9fb92298f6f8844cfcc2eadc70 | 3d2451303252f3bd1c751a4f1347e4fb91beab78 | refs/heads/master | 2020-12-13T22:18:22.628026 | 2020-01-19T12:17:26 | 2020-01-19T12:17:26 | 234,547,262 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,401 | c | #include <stdio.h>
#include <stdlib.h>
#include "headers/equipment.h"
#include "headers/antenna.h"
#include"headers/simulation.h"
#define MAX(a,b) \
({ __typeof__ (a) _a = (a); \
__typeof__ (b) _b = (b); \
_a > _b ? _a : _b; })
int checkCollision(Antenna * antenna, int spreadingFactor, int channel);
vo... | [
"a.delval87@gmail.com"
] | a.delval87@gmail.com |
e53b657f956aabcd6d28ff6602810ffc1c134120 | 0ac4a3db34995825cb972bb3a739d00adf18ce19 | /c/c7/c7_2/c7_2.c | 035cb77fe17aa9862263b4faf79d28da94d48a37 | [] | no_license | leearvin/projects | 1f0bdd0d8d1eae37ef60e29b9f1e0ca9ea063838 | d5afedc8cc0bf2bd57fb37828dba64a16be2b347 | refs/heads/master | 2021-07-10T20:21:49.218816 | 2020-09-08T14:59:54 | 2020-09-08T14:59:54 | 70,250,030 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 301 | c | #include <stdio.h>
void main()
{
struct person
{
long num;
char name[30];
int age;
char sex;
char address[200];
}ab2,ab1={1,"Zhang San",38,'M',"Being Jing Haidian Street NO.12"};
ab2=ab1;
printf("Number = %ld\nName=%s\n",ab2.num,ab2.name);
printf("age=%d\nsex=%c\n",ab2.age,ab2.sex);
} | [
"lhjdark@hotmail.com"
] | lhjdark@hotmail.com |
8b0be8d3d600ae7df4d78ae64ce2f5829ffbf5ad | a740566141a32a26b6caac0025c5000696db5ff3 | /FreeRTOS_LED_Button/Config/FreeRTOSConfig.h | eaf697ef0cf8c381d8583928889979c5b9967590 | [] | no_license | TheDK0309/FREERTOS | 9cb64c4958e810382e908707c16121f853b49603 | 74fef7f97e0da2c827926b855a5188fcf1ff2bd5 | refs/heads/master | 2020-06-30T15:05:13.627982 | 2019-08-06T15:38:03 | 2019-08-06T15:38:03 | 200,866,179 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,408 | h | /*
* FreeRTOS Kernel V10.1.1
* Copyright (C) 2018 Amazon.com, Inc. or its affiliates. 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, ... | [
"noreply@github.com"
] | TheDK0309.noreply@github.com |
3f54e636144e50b4156639358115235dfdf199ed | db24129ea6db821b78317eb4bf298cd901a0b80a | /cfe/modules/core_private/ut-stubs/src/cfe_sb_core_internal_stubs.c | 0c3ed80b2758435053382329c6079e888d62f5d1 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | ipeitzsch/cFS | e72c4ca4090f11190f2fdec0ea9f79237d60a76d | d6eeea7d95c26eb9931990fe30f5860f7a64eb47 | refs/heads/main | 2023-06-23T03:48:11.161287 | 2021-07-23T13:22:41 | 2021-07-23T13:22:41 | 377,186,894 | 1 | 3 | Apache-2.0 | 2021-06-15T14:13:50 | 2021-06-15T14:13:49 | null | UTF-8 | C | false | false | 2,078 | c | /*
** GSC-18128-1, "Core Flight Executive Version 6.7"
**
** Copyright (c) 2006-2019 United States Government as represented by
** the Administrator of the National Aeronautics and Space Administration.
** All Rights Reserved.
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not us... | [
"irpeitzsch@gmail.com"
] | irpeitzsch@gmail.com |
09a132cebe141f779c46135ac464668acf0f4155 | 53cec7c4ca4bef433c649c46d7cf208db4fb55e4 | /d/lingtai/room7.c | 3aa50750f7489082113026aafba10da289ce182d | [] | no_license | androids7/sjsh | c57b2f0f94932e228641a166efda8b7e19eefcc1 | 1c0391f6b8236f2c6e0c62a2bf904f47e3d5ca26 | refs/heads/master | 2021-01-09T15:35:19.076098 | 2016-02-21T11:27:48 | 2016-02-21T11:27:48 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 1,504 | c | // changan lingtai
// room7.c
inherit ROOM;
void create()
{
set ("short", "圣君殿");
set ("long", @LONG
殿堂中有一个如天神般的人站在那里,他就是方寸山的鼻祖
——灵台圣君。
LONG);
set("exits", ([ /* sizeof() == 4 */
"west": __DIR__"room8",
"south": __DIR__"room6",
"east": __DIR__"room9",
]));
set("objects", ([
__DIR__"npc/kongwu": 1 ]) );
... | [
"liming.xie@gmail.com"
] | liming.xie@gmail.com |
adbf0474c78260213917f14572e612c55da31df3 | af9eeb1c593e11dbd1e37f7be5043e9fe8518f3d | /algorithm/gcd.c | f1712848484f1f2d4f7ef15b6c4842f478ce61e9 | [] | no_license | dannoy/tools | f3a8e795dab4ce72a88ac785bafc16794708063d | 01abe815226042554c1a53fa87c556b3af421794 | refs/heads/master | 2020-05-04T19:27:07.499577 | 2013-05-13T16:36:27 | 2013-05-13T16:36:27 | 3,598,663 | 2 | 1 | null | null | null | null | UTF-8 | C | false | false | 896 | c | #include <stdio.h>
int gcd1(int m, int n)
{
int r = 0;
r = m % n;
while(r) {
m = n;
n = r;
r = m % n;
}
return n;
}
int gcd2(int m, int n)
{
int r = 1; /* Any value except 0 */
while(r) {
r = m % n;
m = n;
n = r;
}
return m;
}
int ... | [
"dannoy.lee@gmail.com"
] | dannoy.lee@gmail.com |
87ed639093a42b01c9ac2206a47e6afbdc660300 | 35c494cf4450fe10a729db0321ad7f81ac043ffb | /Source/Control_Flow/Goto_Statement/GotoStatement.c | 8869238d2180227a39f0cd7978bb09fbf7ea4313 | [] | no_license | Optinapustyn/C_Lessons | e0a23ed90b1fe7fb0c44e16c41e3aee345bca64f | a2f69eadd6d7d899ce6c0b5bb0312700b71ed31d | refs/heads/main | 2023-07-29T15:16:03.049271 | 2021-09-19T09:06:05 | 2021-09-19T09:06:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 621 | c | #include <stdio.h>
#include <stdlib.h>
int main()
{
MAINMENU:
char userInput;
printf("|------|\n");
printf("| HOPE |\n");
printf("|------|\n\n");
printf("|----------------|-------------------|\n");
printf("| Main Menu -> M | Exit Program -> E |\n");
printf("|-----------... | [
"merttgg@gmail.com"
] | merttgg@gmail.com |
05610ed69e457dbc9514bccc8ba0c1b7cb3d028f | a280aa9ac69d3834dc00219e9a4ba07996dfb4dd | /regularexpress/home/weilaidb/software/yasm-1.3.0/modules/objfmts/coff/coff-objfmt.c | 4e8bf4808867d91a2652b609278111b42f1f949c | [] | no_license | weilaidb/PythonExample | b2cc6c514816a0e1bfb7c0cbd5045cf87bd28466 | 798bf1bdfdf7594f528788c4df02f79f0f7827ce | refs/heads/master | 2021-01-12T13:56:19.346041 | 2017-07-22T16:30:33 | 2017-07-22T16:30:33 | 68,925,741 | 4 | 2 | null | null | null | null | UTF-8 | C | false | false | 3,815 | c | #define REGULAR_OUTBUF_SIZE 1024
#define COFF_SET_VMA (!objfmt_coff->win32)
#define COFF_MACHINE_I386 0x014C
#define COFF_MACHINE_AMD64 0x8664
#define COFF_F_LNNO 0x0004
#define COFF_F_LSYMS 0x0008
#define COFF_F_AR32WR 0x0100
typedef struct coff_reloc coff_reloc;
#define COFF_STYP_TEXT ... | [
"weilaidb@localhost.localdomain"
] | weilaidb@localhost.localdomain |
9770e4386ff8a95a4b4f0cf03d949482895f211b | 054caddd84fe4e8babc6b5fb0275183e9b989670 | /实验43 汉字显示实验/USMART/usmart_config.c | 4b930fc10325065237a1ca0a8c51c564ff2f6163 | [] | no_license | dubuli/D1911_STM32H743_code | 2ceae4c3d0bbf79e3e80f80a4605cb269b47b1f0 | ab28f76c45d3f5e44ffe3f2389ab3fcdec47e299 | refs/heads/master | 2020-09-19T22:01:34.141699 | 2020-05-17T13:59:02 | 2020-05-17T13:59:02 | 224,307,278 | 1 | 0 | null | null | null | null | GB18030 | C | false | false | 1,427 | c | #include "usmart.h"
#include "usmart_str.h"
////////////////////////////用户配置区///////////////////////////////////////////////
//这下面要包含所用到的函数所申明的头文件(用户自己添加)
#include "delay.h"
#include "text.h"
//函数名列表初始化(用户自己添加)
//用户直接在这里输入要执行的函数名及其查找串
struct _m_usmart_nametab usmart_nametab[]=
{
#if USMART_USE_WRFUNS==1 //如果使能... | [
"zz"
] | zz |
4e7ca316b0c749267ec4ed2b4da107a45cc03600 | 6c81d3c09d881042ddf8efa1eedf3a218c8ebd0e | /hw4/fpwr8.c | 80f63c0c353da333b516bc8209b10b33314aa12f | [] | no_license | elihan27/CS-33-2 | 99d3a1225c699e35dfe5ba4a48e753af9d04b3b5 | 3742d399707c24f829c078b70b37a4fe33fa6895 | refs/heads/master | 2020-04-04T01:13:08.347058 | 2018-11-01T06:41:57 | 2018-11-01T06:41:57 | 155,673,084 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 946 | c | //
// main.c
// 2.90
//
// Created by Elizabeth Han on 11/7/17.
// Copyright © 2017 Elizabeth Han. All rights reserved.
//
#include <stdio.h>
#include <limits.h>
static float u2f(unsigned int u)
{
union{
unsigned int u;
float f;
}temp;
temp.u = u;
return temp.f;
}
floa... | [
"ehan2016@gmail.com"
] | ehan2016@gmail.com |
367a5285adfb849157a96b03b518b46e777877a2 | 1c8e4206a4515c7f057c5a9ca04ce31222b4d3d3 | /update_state_396.c | dfbba8541dbc282a52144eb6fb7a6b1d2728fcf2 | [] | no_license | lmpick/Property-1-Monitor | a6e4eb2e71a5d69fe822fec6c25b1afb53174170 | f770e2768679ef0a95447b6c9246c44e3ee23c9c | refs/heads/master | 2021-05-30T19:54:22.860231 | 2015-08-11T17:25:47 | 2015-08-11T17:25:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 520 | c | /* File: "update_state_396.c". Automatically generated by SBV. Do not edit! */
#include "internal.h"
/* User given declarations: */
/*test 001*/
/*DotBegin
digraph G {
node [shape=box]
0 [label="file:
?????",color=red, style=filled]
1 [label="stream: 393",color=crimson, style=filled]
0 -> 1
}
DotEnd*/
/*@
assig... | [
"lmpick@zoho.com"
] | lmpick@zoho.com |
3ae236cb7cd8dec658d1614ded7e51a6b3f1fb71 | 3c39e92b7d2a81b9b94356ade7ae981be7d9f0bf | /u-boot_u-boot_d0d07ba/src/opt/src/tools/fit_image.c | 5aca634b5e935e6baf95312eef48f028f7cd8f2e | [
"MIT"
] | permissive | adde9708/codeql-uboot | 9b1d4d5c9fc340687c8ccc930b3d0a8e326e6554 | 0c56e6be2deb0c369f8e1e7e517656690abb0be3 | refs/heads/master | 2022-11-27T03:56:39.855516 | 2020-08-03T17:56:28 | 2020-08-03T17:56:28 | 284,382,667 | 0 | 0 | MIT | 2020-08-02T16:32:49 | 2020-08-02T03:26:59 | C | UTF-8 | C | false | false | 21,010 | c | // SPDX-License-Identifier: GPL-2.0+
/*
* (C) Copyright 2008 Semihalf
*
* (C) Copyright 2000-2004
* DENX Software Engineering
* Wolfgang Denk, wd@denx.de
*
* Updated-by: Prafulla Wadaskar <prafulla@marvell.com>
* FIT image specific code abstracted from mkimage.c
* some functions added to address abstraction
... | [
"adde.edvin@gmail.com"
] | adde.edvin@gmail.com |
d379071e7986c366d8c9f507957975d164fb689f | d6cff65c2bf910ddc4b3f04f74a974ea4b9d4028 | /tools/fsbanklib/fsbank.h | b43682249585287a612e52f3086b918c93201bb8 | [] | no_license | 7dog123/Fmodex | 7ae291666268ea253374a8fdf9a19f8982231718 | 753128ce96cfd6163d8519bd576bdb0d07914f07 | refs/heads/master | 2022-12-10T08:31:08.301757 | 2020-08-25T00:02:14 | 2020-08-25T00:02:14 | 290,069,479 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 17,425 | h | #ifndef _FSBANK_H
#define _FSBANK_H
#if defined(_WIN32)
#define FB_API __declspec(dllexport) _stdcall
#define FSBANK_CALLBACK _stdcall
#elif defined(__linux__)
#define FB_API __attribute__ ((visibility("default")))
#define FSBANK_CALLBACK
#else
#define FB_API
#define FSBANK_CALLBACK
... | [
"futuretrunks745@gmail.com"
] | futuretrunks745@gmail.com |
9d2e9e563d1c5bb8f391f1c5224fc03cc71bea43 | f1fdab5ef472bf04d1bec1141e87b94ebc61a1e2 | /forktest.c | f39013548359663af5ad66899f8dc2c998c4c733 | [] | no_license | befallenStar/operator-system-thread | 51dbefaaae1fb167dcb9ea85fe2c77c8ecfde424 | 0077b7113adf14d53e996b351b290ae215565f90 | refs/heads/master | 2021-10-22T05:32:24.538652 | 2018-11-26T13:32:56 | 2018-11-26T13:32:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 320 | c | #include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
void main(){
int i,p_id;
if((p_id=fork())==0)
for(i=1;i<3;i++)
printf("This is child process\n");
else if(p_id==-1){
printf("fork new process error\n");
exit(-1);
}
else
for(i=1;i<3;i++)
printf("This is parent process\n");
} | [
"noreply@github.com"
] | befallenStar.noreply@github.com |
6df6f8c4e8165afc6af0eb330c9300547153071b | 97577ed5682c18e3ef2c3fcc46afa157a188a551 | /C-assignment/Assignment2/reverse.c | fcae2fc733d1c721fd3680b6d021565cf2107414 | [] | no_license | keerthanareddyvarakala/ncrwork | 81bd9c8d17f460b58dde3d6fbb46c544573bab6a | 20109fa37f6dc66bf855d384e396d8b57c971d6b | refs/heads/master | 2020-04-20T06:18:18.451600 | 2019-03-12T15:16:35 | 2019-03-12T15:16:35 | 168,679,167 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 299 | c | #include <stdio.h>
int main()
{
int n, r = 0;
printf("Enter a number to reverse\n");
scanf("%d", &n);
while (n != 0)
{
r = r * 10;
r = r + n%10;
n = n/10;
}
printf("Reverse of entered number is = %d\n", r);
return 0;
}
| [
"noreply@github.com"
] | keerthanareddyvarakala.noreply@github.com |
e360aa7a0c332b8c005acabb6d3dbfc1b7d47470 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/09d17ce2-57d7-4abd-9306-fa74b20e15cb.c | 3a20a28a0fd45bb0765fc8088ab9b506bc5754ad | [] | no_license | nmharmon8/Deep-Buffer-Overflow-Detection | 70fe02c8dc75d12e91f5bc4468cf260e490af1a4 | e0c86210c86afb07c8d4abcc957c7f1b252b4eb2 | refs/heads/master | 2021-09-11T19:09:59.944740 | 2018-04-06T16:26:34 | 2018-04-06T16:26:34 | 125,521,331 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 567 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=0;
int j=13;
int k;
int l;
j = 53;
l = 64;
k = i/j;
l = i%j;
l = l+j;
k = k-k*i;
//variables
/* START VULNERABILITY */
int a;
long b[78];
long c[62];
a = 0;
while (( a - 1 ) > -1) {
a--;
... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
d7a4544d34f004a5ac3bd3c6f48c17925ae64702 | 40de3da30239862f11a946166b50438174c2fd4e | /lib/wizards/nalle/area/i4.c | f6c31c6278bf6f52e2e217cff16d65758d108c26 | [
"MIT"
] | permissive | vlehtola/questmud | f53b7205351f30e846110300d60b639d52d113f8 | 8bc3099b5ad00a9e0261faeb6637c76b521b6dbe | refs/heads/master | 2020-12-23T19:59:44.886028 | 2020-01-30T15:52:16 | 2020-01-30T15:52:16 | 237,240,459 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 460 | c | #include "room.h"
#undef EXTRA_RESET
#define EXTRA_RESET\
extra_reset();
extra_reset() {
}
THREE_EXIT("wizards/nalle/area/i5","east",
"wizards/nalle/area/h4","south",
"wizards/nalle/area/i3","west",
"Hallway in the northern part of the fortress.",
"This is a simple hallway, lit by torches that have been placed\n... | [
"ville.lehtola@iki.fi"
] | ville.lehtola@iki.fi |
7b64251959deccef14632dcb4c5c8a9b32708232 | 1e8da9bfa6e0860ad90c36e19bfa2aebe6cd68e1 | /tutorial/Pods/BuildHeaders/Chute-SDK/GCUploadingAsset.h | 3b567b69b65a604479a42acb969595260ac41cba | [] | no_license | SachiraChin/photo-picker-plus-ios | 698c361b6a0b73be53610cbe619ae3bccebad320 | 96500229322a0e1b52b8f78330a71ee8fcbf1087 | refs/heads/master | 2021-01-18T05:20:46.574951 | 2013-09-11T18:11:09 | 2013-09-11T18:11:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 57 | h | ../../../../Chute-SDK/Chute-SDK/Models/GCUploadingAsset.h | [
"atrpeski.kex@gmail.com"
] | atrpeski.kex@gmail.com |
76130f975abe963c7af4ccb6a51a43462a4f553b | 6cd662f7e0b877699ead06f92401fcc6dbf6a660 | /new/spms/src/lib/libslist/src/slinit.c | 8877c790d4955410f011377c0576ac9692516c06 | [] | no_license | Roare/Digital-Ultrix-32-VAX-2.0 | d53ff4b2c559a9e03cbc073de5c106b38591e43f | 56695b632d960b605717f93f84dc6fa7ec5b4e2f | refs/heads/master | 2023-09-01T17:43:13.032091 | 2020-04-25T00:27:39 | 2020-04-25T00:27:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 519 | c | /* $Header$ */
/*
* Author: Peter J. Nicklin
*/
/*
* slinit() returns a pointer to the head block of a new list, or null
* pointer if out of memory.
*/
#include "null.h"
#include "slist.h"
SLIST *
slinit()
{
char *malloc(); /* memory allocator */
SLIST *slist; /* pointer to list head block */
if ((slist... | [
"zahir.meddour@protonmail.com"
] | zahir.meddour@protonmail.com |
8bd62d023ca01a7b810719178508c7da510f6d03 | 1cc5d45273d008e97497dad9ec004505cc68c765 | /cheatsheet/ops_doc-master/Service/cfaq/C修真之旅/simplec/simplec/module/schead/include/scsocket.h | 1083d48bd4957c712f46a4fe387d410f414512f1 | [] | no_license | wangfuli217/ld_note | 6efb802989c3ea8acf031a10ccf8a8a27c679142 | ad65bc3b711ec00844da7493fc55e5445d58639f | refs/heads/main | 2023-08-26T19:26:45.861748 | 2023-03-25T08:13:19 | 2023-03-25T08:13:19 | 375,861,686 | 5 | 6 | null | null | null | null | UTF-8 | C | false | false | 6,099 | h | #ifndef _H_SIMPLEC_SCSOCKET
#define _H_SIMPLEC_SCSOCKET
#include <fcntl.h>
#include <signal.h>
#include <schead.h>
#ifdef __GNUC__
#include <netdb.h>
#include <arpa/inet.h>
#include <netinet/tcp.h>
#include <sys/un.h>
#include <sys/uio.h>
#include <sys/select.h>
#include <sys/resource.h>
//
// This is used instead... | [
"wangfl217@126.com"
] | wangfl217@126.com |
7d8827f2418133abffcee399d8adfb4e786a2309 | ca5e6b66472f08b431929250f52eca6212fc7cb3 | /r3d/examples/textures/twilight.h | 5868d69bd3cd2178593ed0810eee1adf04aa7c9d | [] | no_license | WSCKY/STM32F429I-Discovery | f271dd0ce124b01fb6f55475304bbc75ddd3237d | fef0f6b0852ac79b798d5b41ffed853ee8ab6e1a | refs/heads/master | 2021-05-06T09:41:52.463658 | 2017-12-13T02:48:31 | 2017-12-13T02:48:31 | 114,064,477 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 107,933 | h | static const struct { uint16_t w, h; uint8_t d[]; } twilight =
{
128, 128,
"\0\0\0\0\0\0!\0\316a\266\2329\253:\263\370\242s\202jI\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\245(kI\20r[\263\336\313:\253\346(\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"\0\0\0\0... | [
"hello.kychu@gmail.com"
] | hello.kychu@gmail.com |
f99feaae6af693aedceb5edc9dff2a3592c9f651 | ae974e78e3445076abd998a7f737a89b81d0f258 | /week3/code/3-1-3.c | a6f34705e62e3088afeb65b9776edf1c4d99327e | [] | no_license | anticipate123/linux-study | 51906da93a63ac6b125d7c6b14b2695bb0b66e31 | 83d411ce96e18c4605cfb2b45e5bcb32f0a92185 | refs/heads/master | 2023-02-08T23:10:49.277887 | 2021-01-04T13:16:24 | 2021-01-04T13:16:24 | 298,553,101 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 367 | c | #include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
int main(void)
{
FILE *fp=fopen("./ftest.txt","w");
char buf[80];
int ret;
memset(buf,0,sizeof(buf));
fgets(buf,sizeof(buf),stdin);
printf("%s\n",buf);
ret=fwrite(buf,sizeof(buf),1,fp);
pri... | [
"zengxin@qq.com"
] | zengxin@qq.com |
e1a7b7d1f6a592eb311881b381849138d4ee1254 | 3cdd4d24612c0a29a7308c18f71f1839e9f8d0ab | /software/firmware/ChibiOS/testhal/STM32/multi/RTC/cfg/stm32l476_discovery/portab.h | 1d65e6bb4730d517b175ad0956743343931ff063 | [
"GPL-3.0-only",
"GPL-1.0-or-later",
"Apache-2.0"
] | permissive | netik/dc28_badge | 0a63dcb6e215e95d2def4091182738a134c5e513 | 2eaa8c70848ed3e54afbb8cb2408ead3afc0cb58 | refs/heads/master | 2023-08-10T12:39:31.410312 | 2023-07-30T23:11:06 | 2023-07-30T23:11:06 | 221,294,778 | 2 | 0 | Apache-2.0 | 2023-07-25T20:39:00 | 2019-11-12T19:24:32 | C | UTF-8 | C | false | false | 2,941 | h | /*
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by ap... | [
"wpaul@windriver.com"
] | wpaul@windriver.com |
65875319e3540d355e9e4406a16866318845f324 | 32e13e144f2e38fe9f20a25f9af1741f6ec76350 | /2doParcial/Listas/main.c | 20a65b0dbd5d50ad76b8a3b37922aa3233e275c6 | [] | no_license | TenderTicante/edd2015 | 23dd63edaf1e2426062f990506ff7b999d301bac | 53e546e5b7103510d3925541c004fd03d07fb433 | refs/heads/master | 2021-01-10T15:12:49.871174 | 2015-12-17T05:57:49 | 2015-12-17T05:57:49 | 43,359,419 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,163 | c | #include "operaciones.h"
#include "stdio.h"
#include "stdlib.h"
#include "stdbool.h"
#include <stdlib.h>
void inicializar(struct nodo *cabecera)
{
cabecera->sig = NULL;
}
void insertar_al_principio(struct nodo *cabecera, int valor_nuevo)
{
struct nodo *nuevo;
nuevo = (struct nodo*) malloc(sizeof(struct nodo) * 1)... | [
"tenderticante@gmail.com"
] | tenderticante@gmail.com |
22f9f16711120a4d627a1f54dad8d8ad8aa5683a | 58b8c570a8637230a459e90d4d0e5452af8a708a | /Examples/Pods/Headers/Private/TuneKit/TKRBBSpringAnimationBuilder.h | 009186db8ff27bc1500dfc33a13c1aa24510e60f | [
"MIT"
] | permissive | wtmoose/TuneKit | d6db995743259dc197922682880519eb093d4780 | 7dc7011bfa0f9e3225d4e235aaec760b2eb7a0f4 | refs/heads/master | 2021-01-17T10:59:22.456923 | 2016-10-11T20:51:33 | 2016-10-11T20:51:33 | 17,294,579 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 52 | h | ../../../../../TuneKit/TKRBBSpringAnimationBuilder.h | [
"wtm@tractablelabs.com"
] | wtm@tractablelabs.com |
980dfa125e1c8496249681a7e44152b3d80c14fd | d44f8d11dc3b6d39ac25504c1677a5f666f7c46f | /src/Code/Main/Inc/main.h | 6b5f45e16a88d609ddf27c1e1288aa7f66629a87 | [
"BSD-2-Clause"
] | permissive | zhujinwen0924/Hardware-Sync-of-Robosense-and-Xsense-MTI-300 | 79dd2d5d669eb8abd7076ac73b1630f7caf5d93f | af3691a4c477cceefee6dac5473429440002f556 | refs/heads/master | 2022-12-14T08:55:50.858163 | 2020-09-22T04:46:14 | 2020-09-22T04:46:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 826 | h | #ifndef __MAIN_H
#define __MAIN_H
#ifdef __cplusplus
extern "C" {
#endif
#include "config.h"
#include "bsp.h"
#include "device.h"
#include "tools.h"
#include "host.h"
#include "control.h"
// #define ROCKER_RANGE (660.0f) //摇杆范围为-660 ~ +660
// #define MANUAL_MAX_SPEED_PULSE 10000 //手动速度模式下的编... | [
"johnturner@qq.com"
] | johnturner@qq.com |
7423cc67b08803e516a986286fd9bde3332e92b2 | 0d291e67a102723e253e6db792e97ed414ca49a9 | /painelleds/main.c | 119de516490d73bb5785777ef91c93b31b439e33 | [] | no_license | Dojak220/dca1202 | 0811fb9c6fcab033d2cb0695e95a81660635480c | 89220f2ba326958b207c28d0ca1a2e35dd5ea84e | refs/heads/master | 2020-03-11T22:36:30.286352 | 2018-04-18T11:38:36 | 2018-04-18T11:38:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 378 | c | #include <stdio.h>
int main(){
unsigned char x;
unsigned char i;
unsigned char bits;
unsigned int result;
unsigned char y[8];
x = 45;
bits = 1;
for(i=1; i<=8; i++){
if( (x & bits) > 0){
printf("bit [%d] = 1\n", i);
y[i-1] = 1;
}
else{
printf("bit [%d] = 0\n", i);
y... | [
"agostinhobritojr@gmail.com"
] | agostinhobritojr@gmail.com |
f46e3dec7a5af8a696f16a2493a051583f75304c | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/infiniband/hw/mlx4/extr_mad.c_create_pv_resources.c | 3affb08d2fa2e5e15940c980f34434a11226b5c0 | [] | 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 | 5,026 | 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 |
6e6f46ef3400e11f2ec6a334e42b7bedc045491c | bc683ee3fe98981ee49f772952b30314f2caddde | /src/src/fonts/u8g2_font_times_96pt.c | cce8a24f50ba0f95c52c3308e980a8ca5b6a5563 | [] | no_license | MeldrumJon/Paper-Clock | 3de811518ea18f1542af47ff4b98c08c9b14b121 | 52aa466085fa398a40a2c6e09e238c35e88e2c94 | refs/heads/master | 2020-07-05T11:07:40.982194 | 2020-02-23T23:20:25 | 2020-02-23T23:20:25 | 202,632,988 | 0 | 1 | null | null | null | null | WINDOWS-1252 | C | false | false | 3,896 | c | #include <u8g2_fonts.h>
/*
Fontname: -FreeType-Times-Medium-R-Normal--96-960-72-72-P-529-ISO10646-1
Copyright: © 1990-99 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc. © 1990-91 The Font Bureau Inc.
Glyphs: 11/1283
BBX Build Mode: 0
*/
const uint8_t u8g2_font_times_96pt[1282] U8G2_FONT_S... | [
"meldrum.jon+git@gmail.com"
] | meldrum.jon+git@gmail.com |
6d8bb69c660e0d299fc1b54efbd4f083cec02815 | 570c85193a97613a20ff25fc5b48847eb340444b | /src/ldpreload/ldpreload.c | f2138eca25cd9d47c3562acba58da9be4fd02f16 | [] | no_license | luckypoem/tup | cd89a131161860ccfbfadd9b3250e4b0e014250a | 992155ca41f4c6e3ea032596461d2857768321f2 | refs/heads/master | 2020-08-20T06:45:50.156730 | 2010-03-05T05:03:01 | 2010-03-05T05:03:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 8,527 | c | #define _GNU_SOURCE
#include "tup/access_event.h"
#include "tup/compat.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <dlfcn.h>
#include <pthread.h>
#include <errno.h>
#include <sys/socket.h>
static void handle_file(const char *file, c... | [
"marfey@gmail.com"
] | marfey@gmail.com |
01ecbd332a6a33905c6ea3ecb0858ca51bddd67f | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/fs/btrfs/tests/extr_..extent_io.h_clear_extent_uptodate.c | 75f2daccf3542ea7904ec3fc835bc666c4b02efc | [] | 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,043 | 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 |
f5d929baabd22b76eb51f7613e1fc30238bd3f3c | 6054dbebe2a70988177cf1ef833ca0d098490d0e | /ej21.c | ada037ddc773cfe3660d3f859ea48938b31ed933 | [] | no_license | Winterishtuba/Ejc-winter | f23cf30cac576b8f05c94bf23c9e2dc7731ba977 | b3279544bdcf5482b495093d9e7380766abc7087 | refs/heads/main | 2023-07-09T23:09:51.751099 | 2021-08-10T16:05:59 | 2021-08-10T16:05:59 | 394,704,998 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 579 | c | #include <stdio.h>
#include <stdlib.h>
int main(int argc, char const *argv[])
{
int n = atoi(argv[1]);
int count = 1;
int rows = 0;
for (int column = 0; column < n; column++)
{
while (rows < n)
{
printf("*");
rows++;
if (rows < n)
{
... | [
"winterishtuba@gmail.com"
] | winterishtuba@gmail.com |
38d23b5ff08c70e3df5427bfcb44be03ae62d5b6 | a4447dfeb3b685325cecdad882715d05980d4db4 | /Trabalho_Pratico_1/total_risco.h | 21edc80597bc38b72b8cc7dfd31dc75c6f9c074a | [] | no_license | joaosa9999/ISEP-ARQCP | 97fce22fa724c36509c4fbd48c8d302650edb871 | 54494fa5a0f39a2b8cc983b1391c7cd88b0d6736 | refs/heads/main | 2023-08-18T18:25:51.800821 | 2021-10-02T16:45:59 | 2021-10-02T16:45:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 42 | h | long long total_risco(int *vec, int num);
| [
"grtjordao782001@gmail.com"
] | grtjordao782001@gmail.com |
64e9696119cc03a18f6316c1e4dbd6146e505822 | 7bf779c64f9cf05f847a69de2433a1fea72c165e | /lista_c02/C02/ex07/ft_strupcase.c | c3a1eb0f8ad122946a7e8d94d60df3b18489160b | [] | no_license | rafalacerda1530/42_lists | a4ba450bce7cd5181d21910c3ee943dbab48cbbf | e7706518d9a35c0ff390779717b0fbd7c42852f5 | refs/heads/main | 2023-04-03T02:50:42.842274 | 2021-04-17T05:00:42 | 2021-04-17T05:00:42 | 358,781,996 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,182 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strupcase.c :+: :+: :+: ... | [
"rarodrig@student.42sp.org.br"
] | rarodrig@student.42sp.org.br |
bfd4428c42a8787e026ca46b3e467e5bfaa7426a | a89fb1dca6116335a1a0ef7de03d08a7b339ddec | /lab5/doubly_linked_list.h | e3040a8b2f2f5e47e2fac70fc5e114a6f26f9bfd | [] | no_license | aritra1911/CS-2091 | df0d90057c85d8b1436669a17f7898c9bf90b8fd | 0990fc6eee550ede18d201f5cc0ac239a510aa67 | refs/heads/master | 2023-01-22T22:45:16.349266 | 2020-11-13T15:20:56 | 2020-11-13T15:20:56 | 289,511,189 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 379 | h | typedef struct _Node {
struct _Node* prev;
int data;
struct _Node* next;
} Node;
void append(Node**, int);
void print_traversal(Node*);
void print_reverse_traversal(Node*);
int is_empty(Node*);
void delete_at(Node**, int);
void delete_key(Node**, int);
void insert_at(Node**, int, int);
int count_nodes(Node... | [
"aritra1911@yahoo.com"
] | aritra1911@yahoo.com |
571c34ef7139853504262ebe7144b564347e64b7 | 68daecd8557d60a09ba2922930a19340e6b30db5 | /stepByStep.c | bc635c449da42ada948dbdac2fde34cae812b3c7 | [] | no_license | pegartillo95/Robotics | 4111e74c279ac065a3674c7d0deb95fb3b858394 | 55d83f81021b67943164bfd13d22bd066ebefe7d | refs/heads/master | 2021-01-01T05:05:17.276312 | 2016-05-12T15:06:31 | 2016-05-12T15:06:31 | 58,651,928 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 260 | c |
// control de motores paso a paso -Practica 2
// Grupo 5
#include <wiringPi.h>
int main (void)
{
wiringPiSetup () ;
pinMode (0, OUTPUT);
for (;;)
{
digitalWrite (0, HIGH) ; delay (10) ;
digitalWrite (0, 0) ; delay (10) ;
}
return 0 ;
}
| [
"pegarc03@ucm.es"
] | pegarc03@ucm.es |
ee5a0f6f18ca9f3bdbcefa573f98e43889210b21 | 2ad731388947603f9b75b341a6b485546230487b | /source/ui/section/dumpnand.c | def4e00293b2ddc942cad9930481f66ee2761d4b | [
"MIT"
] | permissive | TricksterGuy/FBI | 5620f144f1be37808ceec73a208cbc77dbae6139 | a1010128bbd61ef69e16840ec017fafcda80bc40 | refs/heads/master | 2021-01-15T19:52:00.463792 | 2016-07-02T05:02:45 | 2016-07-02T05:02:45 | 62,371,935 | 0 | 0 | null | 2016-07-01T07:01:56 | 2016-07-01T07:01:55 | null | UTF-8 | C | false | false | 4,826 | c | #include <malloc.h>
#include <stdio.h>
#include <3ds.h>
#include "section.h"
#include "task/task.h"
#include "../error.h"
#include "../info.h"
#include "../prompt.h"
#include "../ui.h"
#include "../../core/screen.h"
#include "../../core/util.h"
static Result dumpnand_is_src_directory(void* data, u32 index, bool* isD... | [
"Steveice10@gmail.com"
] | Steveice10@gmail.com |
76232ab1892064768325bc9ac8d5534c738c3b28 | 6ccfbb8088bca6884d05a946a4c9eeac27a58e2d | /patches/cernlib.2005.corr/2005/src/pawlib/paw/cmotif/att_color.c | b4894170898ea04339f94ecbeee0a01a907a9a72 | [] | no_license | luketpickering/cernlibgcc5- | dfcf76a3b0e4af9504d9a4e265d971b82ec4cc3b | cb767fc35b4b27c6c9db82d1b31a84cb957909a2 | refs/heads/master | 2023-05-26T08:02:24.929278 | 2023-04-28T07:05:05 | 2023-04-28T07:05:05 | 172,983,286 | 2 | 2 | null | null | null | null | UTF-8 | C | false | false | 15,999 | c | /*
* $Id: att_color.c,v 1.1.1.1 1996/03/01 11:38:53 mclareni Exp $
*
* $Log: att_color.c,v $
* Revision 1.1.1.1 1996/03/01 11:38:53 mclareni
* Paw
*
*/
#include "paw/pilot.h"
/*CMZ : 2.04/15 05/03/94 14.53.28 by Fons Rademakers*/
/*-- Author :*/
/************************************************************... | [
"luketpickering@googlemail.com"
] | luketpickering@googlemail.com |
0362a06fa33bad695695f316c17898203c79d7ee | 9ffba012a6cf74c259741f96ca4606e254f91322 | /0x01-variables_if_else_while/4-print_alphabt.c | d62ec1be8f1003a400b811d156cbde30a6c25536 | [] | no_license | JackWanaCode/holbertonschool-low_level_programming | 9190d0d61f11a50bf4ff7d8c33756ec7f8150d4f | fcead5e0e1bb187c95716acb14dec54cd3d4486c | refs/heads/master | 2020-03-21T03:37:04.706423 | 2019-01-24T01:44:30 | 2019-01-24T01:44:30 | 138,064,256 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 247 | c | #include <stdio.h>
/**
* main - Entry point
*
* Return: Always 0 (Success)
*/
int main(void)
{
char ch;
for (ch = 'a'; ch <= 'z'; ch++)
{
if (ch == 'e' || ch == 'q')
continue;
else
putchar(ch);
}
putchar('\n');
return (0);
}
| [
"kazucuong@yahoo.com"
] | kazucuong@yahoo.com |
5a16bb6fe684ca32681b52133894ac7f0b5c05fd | 333f495445d4ff7cefab17571f894854b14a31d3 | /src/common/objfile.h | 3a92c06601a4f7daa7f3340003b0f90adaf38426 | [
"ClArtistic"
] | permissive | Irvise/z88dk | cd3965478fb8fda2da7df846760dd0d7f9d610de | fcfdeec1f60d565abb64ca84849d78ff749b1ddf | refs/heads/master | 2023-08-26T09:32:55.504082 | 2021-11-13T23:10:25 | 2021-11-13T23:10:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,148 | h | //-----------------------------------------------------------------------------
// zobjfile - manipulate z80asm object files
// Copyright (C) Paulo Custodio, 2011-2021
// License: http://www.perlfoundation.org/artistic_license_2_0
//-----------------------------------------------------------------------------
#pragma o... | [
"pauloscustodio@gmail.com"
] | pauloscustodio@gmail.com |
3fcc8a6172b1dd40bd21ddd0dd5e0143c94c5152 | 6496332e766361513f1eb92fe37bbc9972a00c86 | /project_part_1/mcc_generated_files/memory.c | 7ca4ab6b15b3018ca6f59fb7dd928010f3f505f0 | [] | no_license | bmalbusca/ES_pic16f_eCOS | 239971c7b30b20464b6b43960fcad4cf8568de35 | 7e6f126228b49ec6215831d9134484b76d712d3f | refs/heads/master | 2023-02-20T23:51:10.157678 | 2021-01-25T22:27:09 | 2021-01-25T22:27:09 | 237,809,049 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 6,206 | c | /**
MEMORY Generated Driver File
@Company
Microchip Technology Inc.
@File Name
memory.c
@Summary
This is the generated driver implementation file for the MEMORY driver using PIC10 / PIC12 / PIC16 / PIC18 MCUs
@Description
This file provides implementations of driver APIs for MEMORY.
Ge... | [
"andre.is.silva@sapo.pt"
] | andre.is.silva@sapo.pt |
2ec46cee1fcabde2d5ab69baae8513b91e285a10 | 1ba4a1a33fa03a35a15c94c51d7a0131f461cd08 | /core/include/ling_common.h | 71c0690dfbed684e175625d3bdf586c04d104de6 | [] | no_license | walkr/ling | 8cbbca6f53b6dbbe991b66d1d1df0bb67edbeb89 | 34b7060b2ded306bdc3f649da61b1ebe542cce4c | refs/heads/master | 2021-01-21T23:20:31.162572 | 2014-05-02T19:47:34 | 2014-05-02T19:47:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,031 | h | // Copyright (c) 2013-2014 Cloudozer LLP. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
// list of conditio... | [
"proger@wilab.org.ua"
] | proger@wilab.org.ua |
85ee264f5240b3577a708100e621ae574a805035 | f13c5bbde0d7fd125ea93adf0c548b60841e3125 | /Programming_Season2/fileinput.c | d557cbb2bf9aa4d34275ac01f825539cc80e2fb1 | [] | no_license | fakerainjw/InsideSoongsil | f4705d36ccea554f7c82917b862a5491b8b03d0f | a25764702c106c3e35a3383727f47d6ad1a7c207 | refs/heads/master | 2023-07-24T11:44:43.841405 | 2016-08-31T12:50:29 | 2016-08-31T12:50:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 280 | c | #include <stdio.h>
int main(void) {
FILE *ifp;
char temp;
int a;
ifp=fopen("a.txt", "r");
fseek(ifp,0,SEEK_END);
a=ftell(ifp);
fseek(ifp,0,SEEK_SET);
while (1) {
fscanf(ifp,"%c",&temp);
printf("%c", temp);
if (ftell(ifp)==a)
break;
};
fclose(ifp);
return 0;
}
| [
"jjim9417@naver.com"
] | jjim9417@naver.com |
3cba2bc7d779e48c24bb32f2ebae459d73ef7471 | c26d7b0ed875357278e61627da2da0650da77986 | /src/cmd/chmod.c | 7cfbb7a71d7a8c1e86940f9377ce731821dfaa9b | [
"BSD-3-Clause"
] | permissive | RetroBSD/retrobsd | 5343d9e3c424637fc3ad5b03fe720b2744490025 | 486f81f6abff01c7dcc207235cd2979b226a95ff | refs/heads/master | 2023-09-02T23:12:05.110883 | 2023-07-07T18:41:40 | 2023-07-07T18:41:40 | 18,598,087 | 282 | 59 | BSD-3-Clause | 2023-07-18T07:35:36 | 2014-04-09T13:25:46 | C | UTF-8 | C | false | false | 6,210 | c | /*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*/
/*
* chmod options mode files
* where
* mode is [ugoa][+-=][rwxXstugo] or an octal number
* options are -Rf
*/
#include... | [
"matt@majenko.co.uk"
] | matt@majenko.co.uk |
6b973d935f53a331f4dfb835f94f25a141df3baa | 35df8eb6c16c4f589cf74a70e63df1c64346956b | /Trabalho-2/lex.yy.c | 8afb17bb72d1f9bd74845b9e943994b4c132bbb2 | [] | no_license | phanchieta/Compiladores | a2992d50ef6437d22c576b91c0b955da40216e6e | 306a279dc51e58f908a638ca045571ca4d8d21fa | refs/heads/master | 2021-01-17T17:06:40.148643 | 2015-05-06T14:59:38 | 2015-05-06T14:59:38 | 34,949,981 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 50,221 | c |
#line 3 "lex.yy.c"
#define YY_INT_ALIGNED short int
/* A lexical scanner generated by flex */
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 39
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
/* First, we deal with platform-specific... | [
"phanchieta@users.noreply.github.com"
] | phanchieta@users.noreply.github.com |
9c58bda66c2522bddbac8cb948b486532e861692 | f6f899c52358c7142aad3b2a9fc024d56bc54c72 | /encryptsimple/stdafx.h | d39b4e8104e525e8fbb0d7b60f53962f794a75eb | [] | no_license | nihilus/AutoDecompress | 7c8007518bd8a0c8deaf995468665e997d13b4ac | 5c1a28d2c24c6a8e7e4f76029d45bf81659097ab | refs/heads/master | 2021-01-17T08:45:52.868157 | 2015-05-27T12:47:16 | 2015-05-27T12:47:16 | 36,387,421 | 0 | 1 | null | 2015-05-27T18:32:49 | 2015-05-27T18:32:49 | null | UTF-8 | C | false | false | 387 | h | // stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include <stdio.h>
#include <tchar.h>
#include <Windows.h>
#include <stddef.h>
#include <algorithm>
#include "rc4/rc4.h"... | [
"esmid.idrizovic@gmail.com"
] | esmid.idrizovic@gmail.com |
79477a85da30ecb0b9c521809cd560155869ef65 | 04c8d8da9cebc13513c1b9c7658707ecadfa0ed3 | /Roll a Ball/Temp/il2cppOutput/il2cppOutput/System_Core_System_Func_2_gen_83.h | 9ce4341529cd02ab8895cace5aea0925e994fb42 | [] | no_license | fkieyhzen/RollABall | ed9ef9e93f3cfaecd2be10013797e97e9c1e479e | f083b660966094939ed2b5d2028e31bb4e86a67e | refs/heads/master | 2023-03-19T18:19:11.437779 | 2015-06-08T15:27:45 | 2015-06-08T15:27:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 585 | h | #pragma once
// System.Threading.Tasks.Task`1<System.Collections.Generic.IEnumerable`1<Parse.ParseObject>[]>
struct Task_1_t609;
// System.Threading.Tasks.Task
struct Task_t438;
// System.IAsyncResult
struct IAsyncResult_t63;
// System.AsyncCallback
struct AsyncCallback_t64;
// System.Object
struct Object_t;
// System... | [
"patrick@beetheswarm"
] | patrick@beetheswarm |
be0fc0f1c0356786d9485a6e1b36b34f7bdb4676 | 5fafc8dea9db65d40af1475d7cd4ad518ae987bd | /src/unitTest/test/operator/pre_decrement_char16/pre_decrement_char16_src.c | 0ed87b6057b14f99fc1227f61a432d5bf25574b2 | [
"Apache-2.0"
] | permissive | xianggong/m2c-llvm-devtools-host | ef7daba06119ec6ea23e82d3d29c9f69603a5010 | 98f41e3f51a8e294adfe3a6bebdae7614468bb55 | refs/heads/master | 2021-01-21T12:59:26.378113 | 2016-05-27T01:09:24 | 2016-05-27T01:09:24 | 50,055,804 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,669 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <CL/cl.h>
unsigned char *read_buffer(char *file_name, size_t *size_ptr)
{
FILE *f;
unsigned char *buf;
size_t size;
/* Open file */
f = fopen(file_name, "rb");
if (!f)
return NULL;
/* ... | [
"xgong@ece.neu.edu"
] | xgong@ece.neu.edu |
bb05f78a5afacbc6e6e4664a30e57c712ec73f11 | c2abdfd5908060ad58ce442f211e667073ab50cf | /ext/dom/element.c | 5f6614de798965bfc8f9d02bbfa6cbfe6eb88346 | [] | no_license | kennyb/php-broken | 3c51e5f504b2b4021e16d383aae7e71da0dbb9c7 | d28a8936d4d186b3ab9d6ddfa27d12797513d3be | refs/heads/master | 2021-01-19T14:34:09.479826 | 2009-03-16T23:31:29 | 2009-03-16T23:31:29 | 107,010 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 35,280 | c | /*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2008 The PHP Group |
+---------... | [
"kenny@L4.(none)"
] | kenny@L4.(none) |
04454d5861065f73504e80928c719bdbc2c7b5d1 | 1fabbdfd1ca9ea1b6808893e12bd907eb74de414 | /xcode/Classes/Native/mscorlib_System_Collections_ObjectModel_Collection_1_gen_177MethodDeclarations.h | e90fe8f1161f99e5345129bdec296842716e6a83 | [] | 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 | 12,429 | h | #pragma once
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
// System.Collections.ObjectModel.Collection`1<GCGame.Table.Tab_StoryCopyScene>
struct Collection_1_t14804;
// System.Object
struct Object_t;
// GCGame.Table.Tab_StoryCopyScene
struct Tab_StoryCopyScene_t653;... | [
"bu213200@gmail.com"
] | bu213200@gmail.com |
953471ca33f22693c22b3f4fe069ab30a04b045c | cd30695300283c5a4000917f241cb8b7a7a47d29 | /STM32CubeIDE/blasfeo/include/blasfeo_target.h | 55e91c01d733c60e22b8ca2a883a68dfb0b76671 | [
"MIT"
] | permissive | dongf17/acados-STM32 | b8c49828db1d89dd3b630fc62b176ec26b2719fa | ca39739a6b127d686043bf14031850405d500282 | refs/heads/main | 2023-04-23T01:28:12.851887 | 2021-04-27T13:49:44 | 2021-04-27T13:59:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 451 | h | #ifndef LA_HIGH_PERFORMANCE
#define LA_HIGH_PERFORMANCE
#endif
#ifndef MF_PANELMAJ
#define MF_PANELMAJ
#endif
#ifndef EXT_DEP
#define ON 1
#define OFF 0
#if ON==ON
#define EXT_DEP
#endif
#undef ON
#undef OFF
#endif
#ifndef BLAS_API
#define ON 1
#define OFF 0
#if OFF==ON
#define BLAS_API
#endif
#undef ON
#undef OFF
#... | [
"thomasj@tkjelectronics.dk"
] | thomasj@tkjelectronics.dk |
02cc7b0a21e7cb34b67d48c58daac8bf71bf9dbc | 2e12ea4e6a5e197b70f48a1b5566283096a78785 | /lang/python34/patch-Modules_boolobject.h | 80ddc41bf9c273e134f1a980932c1a585191bc4f | [] | no_license | Linuxcpa/Patches | 3e925721443e31232c4d8fd601b745a8beff4bab | b547b7621cb2e2cfd8f08936b82b356c60f8e5cd | refs/heads/master | 2021-01-20T10:46:06.669252 | 2015-01-24T07:23:55 | 2015-01-24T07:23:55 | 25,842,880 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,038 | h | $NetBSD$
--- Modules/boolobject.h.orig 2014-11-16 03:15:01.375914496 +0000
+++ Modules/boolobject.h
@@ -0,0 +1,34 @@
+/* Boolean object interface */
+
+#ifndef Py_BOOLOBJECT_H
+#define Py_BOOLOBJECT_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+PyAPI_DATA(PyTypeObject) PyBool_Type;
+
+#define PyBool_Check(x) (Py_TY... | [
"linuxcpa@gmail.com"
] | linuxcpa@gmail.com |
6be879fd674a4f390916f01aa15f9c9b07b62f02 | e3262b0420b910a66957d3ab21f42153fddffd4c | /Simple Dungeon and Dragons/Map.c | 658695ca400cfc3657510b4a67ceeeaf541b0b9b | [] | no_license | glorypuncuna/Mini-Project-Proglan | 6dd6b5aed264636a0c9d3e308c86882b42c97235 | 4ea2970a055b36c99c98891e0e9684840fc8cc2a | refs/heads/master | 2020-08-04T18:29:28.814520 | 2019-10-21T02:04:38 | 2019-10-21T02:04:38 | 212,237,365 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,480 | c | #include <stdio.h>
#include <windows.h>
#include "events.h"
#include "myinv.h"
#include "mechanics.h"
int map(int parameter[], int y){
int a[5][5] = {{11,2,11,7,11},{11,10,11,10,9},{1,11,3,6,10}, {11,10,11,5,11}, {0,11,4,10,8}};
system("cls");
awal(a, parameter, y);
}
int awal(int a[5][5], int paramete... | [
"noreply@github.com"
] | glorypuncuna.noreply@github.com |
757379d9abd03fda49b488ba71c73a3e3eaf449b | 408e3e3e64cbdd78ff5563b966b68abedf2a0159 | /libft/ft_putchar_fd.c | e518e4aeb30938d844e126eeda117cdb9a738db0 | [] | no_license | dlytvyn/malloc | abc2f277b4c942b13bbefc00155a946e4220241c | d7063182ce3a6a5fa394a5efa257621e328e1df7 | refs/heads/master | 2020-05-30T06:57:17.160084 | 2020-01-30T11:34:02 | 2020-01-30T11:34:02 | 189,589,212 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 970 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar_fd.c :+: :+: :+: ... | [
"W--LVC48"
] | W--LVC48 |
581b176b4ddc43d7e917688a0110bb071bba1f75 | 0c61df0bb38ae3ef91c39efdff711230e1b67c38 | /KZQ/KZQ_ESP32/main/gatts.c | 972f1be47519cac16f8999b9da69c676a62c0524 | [] | no_license | jiababybaby/mesh_esp32 | 2c02e6222e01143c9e1c80a816b01d155311627f | 6fa8a0c69b1d817c8a41754696c5ec49ed86bd6e | refs/heads/main | 2023-07-12T08:02:05.102854 | 2021-08-23T15:42:36 | 2021-08-23T15:45:37 | 399,158,461 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 28,955 | c | /*
This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied.
*/
/****************************************... | [
"1520170162@qq.com"
] | 1520170162@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.