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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
87e4953a26478fdbd87a670698f865fe9d9ff23e | e8d1e5a83212b9d5d25a83a252d6150f59360eb0 | /x-monitor/extra/include/collectc/cc_array.h | 3a1d6dc703423186c2661c12b6162bba8d5600ba | [
"Apache-2.0"
] | permissive | wubo0067/cpp | 155d3f714e1fbb3fa178e1b94e9899984973eb77 | 26d2c7def540f8eb66010c1fbdc3e800b6079743 | refs/heads/master | 2022-03-13T16:38:41.890096 | 2022-01-14T09:51:38 | 2022-01-14T09:51:38 | 109,409,549 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 7,271 | h | /*
* Collections-C
* Copyright (C) 2013-2015 Srđan Panić <srdja.panic@gmail.com>
*
* This file is part of Collections-C.
*
* Collections-C is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either ... | [
"wubo0067@hotmail.com"
] | wubo0067@hotmail.com |
a077497eb439581fa1e16edc2bdcb59849beafd3 | e9a1b8f039efd2a20b8e2ae11f9c077f2d3bf83c | /Tables.c | 9d0d6847c5bc4c1e1cb6f1997461b101761eeb74 | [] | no_license | visheshpahwa/vishuc | 6134bf5c00b58ec0bfc03d67251efd7bcafb8099 | b63f9a8191b74dcf0512e38c2d87bffc60bb1153 | refs/heads/main | 2023-02-07T22:57:45.591499 | 2021-01-03T15:50:16 | 2021-01-03T15:50:16 | 313,939,674 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 425 | c | #include <stdio.h>
int main()
{
int a;
printf("Enter a number:");
scanf("%d", &a);
printf("The table is:\n");
printf("%d\n",a * 1);
printf("%d\n",a * 2);
printf("%d\n",a * 3);
printf("%d\n",a * 4);
printf("%d\n",a * 5);
printf("%d\n",a * 6);
printf("%d\n",a * ... | [
"noreply@github.com"
] | visheshpahwa.noreply@github.com |
de8fb7e29f54876e7f3463801dcd41310cebd930 | ba49b0661633721419443cfc646a073109a883e0 | /Recursividad/Ejercicios1/Ejercicio1_1.c | 4a4df960ca997c22e1a52f39fcd36ad5d250f1aa | [] | no_license | rcTutorialsC/Recursividad | 81aa4122e01d10afc14ab8fd6b8b726a7cc91109 | 42ef9cf34af4e3a860acbb749af3bdfae8e8bf32 | refs/heads/master | 2020-03-11T11:35:58.765299 | 2018-05-05T15:53:08 | 2018-05-05T15:53:08 | 129,973,522 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 700 | c | //
// Ejercicio1_1.c
// Ejercicio1_1
//
// Created by Ricardo Champa on 18/04/2018.
// Copyright © 2018 Ricardo Champa. All rights reserved.
//
#include <stdio.h>
/*
1.1 Implementa una función recursiva que calcule la multiplicación de los n primeros números naturales.
*/
int multiplicacion(int n){
if(n==... | [
"ricardo.champa@gmail.com"
] | ricardo.champa@gmail.com |
61b7c6445890bec3ca019b610cee98503b258bd4 | 427f48b76d1b312cff7af2d9b535ea333e8d154e | /c/language_while.c | 61b2781f295b59ef54614b307a20c7697cf29b0e | [
"MIT"
] | permissive | rpuntaie/c-examples | 8925146dd1a59edb137c6240363e2794eccce004 | 385b3c792e5b39f81a187870100ed6401520a404 | refs/heads/main | 2023-05-31T15:29:38.919736 | 2021-06-28T16:53:07 | 2021-06-28T16:53:07 | 381,098,552 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 703 | c | /*
gcc -std=c17 -lc -lm -pthread -o ../_build/c/language_while.exe ./c/language_while.c && (cd ../_build/c/;./language_while.exe)
https://en.cppreference.com/w/c/language/while
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
enum { SIZE = 8 };
int main(void)
{
// trivial example
int array[SIZE], n... | [
"roland.puntaier@gmail.com"
] | roland.puntaier@gmail.com |
a971c8f1cfbc58d85facfa58091d9310ffe9f040 | e66fceee9d201962b0668e1f58c46859854fceb4 | /d/xiangyang/guofuting.c | d96c58c3b9ceae736b585ab027ad811bf9293eb9 | [] | no_license | cao777/mudHYLib | a8a6e28d097afb87ef68ee0a3fae13a1c50fe822 | dd7832cc0abad1a21c797692c3f5fafd98702fb6 | refs/heads/master | 2023-03-15T16:26:34.697435 | 2018-12-03T15:35:34 | 2018-12-03T15:35:34 | null | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 819 | c | // Room: /d/xiangyang/guofuting.c
// Date: Jan. 8 1999 by Winder
inherit ROOM;
void create()
{
set("short", "郭府客厅");
set("long", @LONG
这里是郭府的客厅。厅虽不大,却布置的挺雅致。东壁悬
挂着四幅屏条,绘的是梅兰菊竹四种花卉;西壁悬挂的是春夏
秋冬。内厅居中的是一张八仙桌。桌上端放着一套茶具,两旁
摆放着四张檀香椅,显得极为古朴。厅角各摆放着一盆牡丹花,
似乎给这里带来一丝暖意。北壁内墙的神龛供奉岳飞的画像,
上面是一条横幅,上书“还我河山”。
LONG );
... | [
"i@oiuv.cn"
] | i@oiuv.cn |
12839ed5c93081877e429d111a4acb5d7fd4a387 | d64526536949e971f477ebaaf29cbb7789128607 | /数据结构/线性表/链表/OJ实验/8579链式线性表的基本操作/8579链式线性表的基本操作.c | 5b71bb8ed1bf7ff4e8f939a20f114d71d8183183 | [] | no_license | H-W-Huang/c-codes | 33f68b0b30336f6a36d188aad1d7a7de2a101d18 | ff39d717037a8eb04fcf8b96cba08c48d809a474 | refs/heads/master | 2021-01-10T17:44:05.559013 | 2015-07-04T13:53:41 | 2015-07-04T13:53:41 | 36,846,884 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,249 | c | #include<stdio.h>
#include<malloc.h>
#define ERROR 0
#define OK 1
#define ElemType int
typedef struct LNode
{
int data;
struct LNode *next;
}LNode,*LinkList;
int CreateLink_L(LinkList &L,int n){
// 创建含有n个元素的单链表
LinkList p,q;
int i;
ElemType e;
L = (LinkList)malloc(sizeof(LNode));
L->next = NULL; ... | [
"se116677@126.com"
] | se116677@126.com |
30149321b4e693d3719261ea9e3d46d5852a8e27 | 0ce963a7cff7c994a2825d45e6952cb8d200c450 | /parser.h | 91aaf9ab5d95425b8e9a8de1d1e0a03b4143c801 | [
"MIT"
] | permissive | kchmck/mkbundle | b5e31eab8cfc784f8a7e093d0cde957d4d7ccc62 | 8731b796f721cd2fec3026c2d3dd4a88e4c73784 | refs/heads/master | 2021-01-19T22:33:33.277869 | 2014-06-25T14:16:59 | 2014-06-25T14:21:35 | 17,753,091 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,618 | h | // See copyright notice in Copying.
#ifndef PARSER_H
#define PARSER_H
#include <inttypes.h>
#include <stdbool.h>
#include <stdlib.h>
#include "eid.h"
#include "jsmn.h"
typedef struct {
jsmntok_t tokens[256];
const jsmntok_t *cur;
size_t token;
size_t token_count;
const char *src;
// Whether ... | [
"mick@kochm.co"
] | mick@kochm.co |
eb92b7c98c51b9df4b376957fdb7326f92fca395 | 241f24e6a837081fd2f3c574c613cfd0b0ab4fb9 | /usr.lib/libplot/gigi/SCCS/s.arc.c | 9386fb5c3961e48fc5b5e7eec8d4327b056f6b88 | [] | no_license | b4/4.3BSD-Quasijarus | 9474549f02d468f847adb58c797af650f3b803b9 | 2e0a87cbd51f1c47d04f3c57f07f6d9e1aa8ec1b | refs/heads/master | 2021-01-22T20:07:46.920215 | 2017-03-17T04:39:43 | 2017-03-17T04:39:43 | 85,271,248 | 1 | 0 | null | 2017-03-17T04:36:05 | 2017-03-17T04:36:05 | null | UTF-8 | C | false | false | 1,962 | c | h20005
s 00007/00001/00042
d D 5.1 85/05/07 11:50:23 dist 2 1
c Add copyright notice
e
s 00043/00000/00000
d D 4.1 83/11/10 16:03:38 ralph 1 0
c date and time created 83/11/10 16:03:38 by ralph
e
u
U
t
T
I 2
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved. The Ber... | [
"abs@absd.org"
] | abs@absd.org |
2902749e74258e7f6bf55ba2913c79fab21ae252 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/libui/unix/extr_OLD_table.c_uiTableModelGiveColor.c | e7cc5d0ba450967162cf028e904b197f24bcd207 | [] | 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 | 749 | 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 |
257ef78ab7b83c772a3458ccdd3adfc6557ccfbd | 7c6f443f992efd65f4ce96fc52c5323e1417722f | /users/auth/src/1x_kmsm_aes.c | 9cc9f7fb66f87803ce5307b637b927d967582c6e | [] | no_license | frederic/rtl819x-toolchain | 692892b0123feee8d030f0dd17bb500be9ed35a7 | 5c9be5d943318fdb4d048ae22078129594eb5a10 | refs/heads/master | 2021-01-16T19:18:23.267793 | 2014-03-24T20:39:20 | 2014-03-24T20:39:20 | 11,039,776 | 16 | 16 | null | 2020-03-08T12:11:12 | 2013-06-28T22:28:25 | C | UTF-8 | C | false | false | 19,521 | c |
/* This is an independent implementation of the encryption algorithm: */
/* */
/* RIJNDAEL by Joan Daemen and Vincent Rijmen */
/* */
/* which is a candi... | [
"user@debian"
] | user@debian |
74581482c24948b4b866e6f24e45b1f5316a48f7 | 4349c25169d34a5daf566cf8fb1a8f5b8d3da452 | /ComplexLinkList.h | c54b8c0d9d14b8492c11d926bc7021e8e1967010 | [] | no_license | XGDD/esercise-code | b7c0b71fe55fd1b78c3e424fefa7486c9d573346 | 0c920fcdb733b37158c3e09b501e6d56fc88cdad | refs/heads/master | 2020-03-27T07:07:49.151735 | 2019-01-12T08:10:51 | 2019-01-12T08:10:51 | 146,165,186 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 344 | h | #ifndef __COMPLEXLINKLIST_H__
#define __COMPLEXLINKLIST_H__
#include<stdio.h>
typedef int DataType;
typedef struct ListNode
{
struct ListNode* next;
struct ListNode* random;
DataType data;
}Node, *pNode, *pList;
pNode BuyNode(DataType d);
pNode CopyComplexLinkList(pList plist);
#endif... | [
"noreply@github.com"
] | XGDD.noreply@github.com |
e90044b19e1f3efb7efa5731e76ee828746bc864 | e7148b971a0d3a722356d20b5b6c5fbfb0678b72 | /leptjson/test.c | 88ab38a9382e4ab0fda79e3169098d685c6f6213 | [
"MIT"
] | permissive | houbin/recipes | ec4b7f47b01c8b0502873584b9ddedad56f94bcb | 2ca4008ae2409bfbc79fd6b664d492a616e745a8 | refs/heads/master | 2021-01-10T10:08:35.022404 | 2019-06-05T02:42:04 | 2019-06-05T02:42:04 | 44,296,558 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,733 | c | #include <stdio.h>
#include "leptjson.h"
#include <string.h>
static int main_ret = 0;
static int test_pass = 0;
static int test_count = 0;
#define EXPECT_EQ_BASE(equality, expect, actual, format) \
do\
{\
test_count++;\
if (equality)\
test_pass++;\
else\
{\
fprintf(stderr, "%s:%d: expect: " format ", ... | [
"houbin0504@163.com"
] | houbin0504@163.com |
71ec3a3e313cf07569d6c2726cd5a1698d3fe738 | 4af66fba42e480f1839109a67bf867a0808b457e | /info22_2.c | a6c3c36f81ec569fe47880844e606830f00c0242 | [] | no_license | hoshitocat/tukuba_c_language | fd8be8fb070d49e50436ac4013331bc6c3d3ee73 | d09664cc547bf37b5c4ccfbecf6f0f12df118406 | refs/heads/master | 2021-01-22T03:01:22.956086 | 2013-08-13T07:28:27 | 2013-08-13T07:28:27 | 11,098,650 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,931 | c | // 筑波大学院過去入試問題平成22年度2月
#include <stdio.h>
#include <stdlib.h>
struct node {
int data;
struct node *left;
struct node *right;
};
struct node *root = NULL;
// プロトタイプ宣言
struct node *insert_node(int x, struct node *p);
int sum_node(struct node *p);
int node_data(struct node *p);
int search_node(int x, struct node... | [
"ryohei@MacBook-Air-of-ryohei.local"
] | ryohei@MacBook-Air-of-ryohei.local |
c0af82d6e9b670fcb02062be22bc4e45c8210664 | 944263c082d13bb08a0a826f3174ace2b88d4f2b | /tp3_corregido/utn_biblioteca.c | da9c0e4cef45517e1bad1f4b8e782394c3b5cbbd | [] | no_license | juanpdoss/DosSantos1A.TPS | 771b52599f7e3226876ec105eec68a8fd3f4d399 | 7e2a69e72b90781836b7d156a0edcdf9298252c0 | refs/heads/master | 2022-11-15T18:40:53.265931 | 2020-07-05T20:49:11 | 2020-07-05T20:49:11 | 277,380,990 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,582 | c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "utn_biblioteca.h"
int utn_getEntero(int* pEntero,int reintentos,char* msg,char*msgError,int min,int max)
{
int todoOk = -1;
int auxInt;
if(pEntero!=NULL&& msg !=NULL && msgError!=NULL && min<= max && reintentos>=0)
{
do
... | [
"juanpdoss@gmail,com"
] | juanpdoss@gmail,com |
bdf13ac0b5312e3e87e6a6d02d0a2389ebb95ee3 | e20e26fcbbb172503a3abda73995c5b05ccda549 | /include/minizip/ioapi.h | 43aaf6f13c83e2a673f0d7fb33e6395d368dd8e9 | [
"BSD-3-Clause",
"BSD-2-Clause-Views"
] | permissive | viest/php-ext-xlswriter | 13a76729c3f4d63a84cd6e7e2becb281e6a2efe9 | cf7e1933a6566c6426d994c8a56880ce1c53793f | refs/heads/master | 2023-08-20T05:56:13.134635 | 2023-05-15T06:18:42 | 2023-05-15T06:18:42 | 111,766,797 | 1,485 | 162 | BSD-2-Clause | 2023-05-14T22:07:37 | 2017-11-23T05:23:49 | C | UTF-8 | C | false | false | 7,089 | h | /* ioapi.h -- IO base function header for compress/uncompress .zip
part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html )
Modifications for Zip64 support
Copyright (C... | [
"dev@service.viest.me"
] | dev@service.viest.me |
b65c578a1e8f7aaa1e8ec34996849c8cf7cfe756 | 72370850a64efc08f2d36f4f092d726f2ebe11f5 | /stendo_MIS.cydsn/Generated_Source/PSoC5/SIG1_aliases.h | 7f8c1d4f2b2668a70be522af1edbe805120c4380 | [] | no_license | Togec/PSoC_MIS2 | 8538aaed7ed06f421a11722a247f9fe40dea5e32 | 061643e8b3010b1687a7998a44753144cd6e3606 | refs/heads/master | 2020-03-24T11:36:24.767392 | 2018-07-28T15:31:50 | 2018-07-28T15:31:50 | 142,690,049 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,223 | h | /*******************************************************************************
* File Name: SIG1.h
* Version 2.20
*
* Description:
* This file contains the Alias definitions for Per-Pin APIs in cypins.h.
* Information on using these APIs can be found in the System Reference Guide.
*
* Note:
*
*******************... | [
"40124015+Togec@users.noreply.github.com"
] | 40124015+Togec@users.noreply.github.com |
885980ecfe2b2a83af1c8bc4cf38e5cb1852282c | 305bcc40ee70c8f70b1be41cf63da692f6e13fcb | /libft/ft_strclr.c | c7241008e346319eb9bf724146a49837c5e96a0f | [] | no_license | yataji/RT | 0f563e2d9deebc3e45c2a3bc124994c1535bef7c | a024f4251a27ee64da9efcfa32764229148c9588 | refs/heads/master | 2023-04-17T10:05:38.690001 | 2021-04-29T02:51:21 | 2021-04-29T02:51:21 | 338,116,061 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,019 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strclr.c :+: :+: :+: ... | [
"yassinoubil3@gmail.com"
] | yassinoubil3@gmail.com |
69ffb54cf3ffca4eb8151295945e0cf4aa53d698 | 5b229e6b74cab6aa8440d143e84c5ca64ab25747 | /libft/ft_strmap.c | b523440541c48c243c1209ee16ef5c066c4c8e94 | [] | no_license | pbourdon/21sh | 43458f1e4fdba5e90741d7498f3c4bbbcc0871fd | 76acd778293f7fad0a624253e63dbff3b6ee5ab1 | refs/heads/master | 2020-09-14T01:06:13.856914 | 2016-10-31T12:57:05 | 2016-10-31T12:57:05 | 66,008,122 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,186 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strmap.c :+: :+: :+: ... | [
"pbourdon@e1r5p4.42.fr"
] | pbourdon@e1r5p4.42.fr |
9f398cceddfed9c0f8c16048e74f30d3df193211 | 2ba3546f1178f86557a1f1e8ef48a6217438e00a | /Alstrukdat 10/listdp/src/listdp.c | befb6bf2d982b4c68af3bc6b95ea670c242c34c5 | [] | no_license | andresjerriels/Praktikum-Alstrukdat-2020 | 27d01c3603d0037c35e6a677b56917bb14c8adfe | 7d2a933b8143c4e8b9c4a9911e67bb9e051721eb | refs/heads/master | 2023-01-15T00:41:12.600267 | 2020-11-24T05:46:57 | 2020-11-24T05:46:57 | 298,253,611 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,458 | c | /*
NIM: 13519218
Nama: Andres Jerriel Sinabutar
Tanggal: 11 November 2020
Topik praktikum: ADT List Berkait
Deskripsi: Membuat implementasi ADT List dengan Double Pointer
*/
#include "listdp.h"
#include <stdio.h>
#include <stdlib.h>
/* PROTOTYPE */
/****************** TEST LIST KOSONG ******************/
boolean IsE... | [
"andres.sinabutar@gmail.com"
] | andres.sinabutar@gmail.com |
666483506f226fc8501bac34bf7c7eb3d528d420 | 60c0d882db45faf5ffba2df5dc4d89531cfae807 | /UNP/05 TCP 客户 服务器程序示例/progs/WaitAndWaitpidTestClient.c | 8070a9df552e87f4757c55657611935970eb54b0 | [] | no_license | zsgvivo/Networking | 28315293cbf8b2b63629411803118b0d670bb1f7 | db8fda9013abb317749ecef5c5cc35100e907e3d | refs/heads/master | 2023-03-19T08:43:52.066758 | 2019-10-28T15:57:10 | 2019-10-28T15:57:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,036 | c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/wait.h>
#include <signal.h>
#include "../../tool/ReadWriteTool.h"
void sendMessageToSvr(FILE *fp, int fd)
{
char buf[1024];
ssize_t nread = -1;
while (fgets(buf, size... | [
"yangxiaohei321123@163.com"
] | yangxiaohei321123@163.com |
623453d81122b4632e188532a2aa45c49267bd1b | c5b761b2341ef33b935c46d278cbd9fd82685e64 | /Atmega32 projects/LM35_pro/SWD_config.h | c26d920ebac493494dc4c4690607f6ac6b47d20c | [] | no_license | NayirMicheal/C-Work | 8fd43af10405517c81ac8ea0d8e538703dea90c1 | cdf7dbbb06d4fdff25a856f0a6923516c2f7c47a | refs/heads/master | 2022-11-27T19:03:15.371319 | 2020-07-31T19:30:37 | 2020-07-31T19:30:37 | 283,156,913 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 764 | h |
#ifndef SWD_CONFIG_H_
#define SWD_CONFIG_H_
#ifdef SWD_INT_H_
/*Please Add your switches index*/
/******************************************/
/* Public Configuration*/
typedef enum{
SWD_u8_SW1,
SWD_u8_SW2,
/*
* Please Insert your switches here
* */
SWD_u8_SW_NB
}SWD_SwIndex;
/***************... | [
"noreply@github.com"
] | NayirMicheal.noreply@github.com |
b12d9856e281029bc5b5c88df0dfccec34b2bb0a | a7aecab362f39486fa12a789cd10f9a40d9f2709 | /libft/src/libft/ft_realloc.c | 21e0a14795ddb7748addbadc3949551fc846a321 | [] | no_license | tmakgale/Lem_in | a0af4bc3ff26bbd31d00592af1bdd15bbeb2dd69 | 6ab9986b82f081cfdb0e82d91303cf6f0fc4e711 | refs/heads/master | 2020-03-29T08:40:48.669314 | 2018-09-21T07:01:09 | 2018-09-21T07:01:09 | 149,723,068 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,214 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_realloc.c :+: :+: :+: ... | [
"tmakgale@e4r14p5.wethinkcode.co.za"
] | tmakgale@e4r14p5.wethinkcode.co.za |
0b1224bf5d15311ecab5f7deb3ddbaf1812ec5cf | 6f0b7753233ebf4768a4bec47b142c7045e0c89e | /src/mlx/pixel_put.c | 1b49f1eca8bfc1b097ce49788000d96afcaf4eb6 | [
"MIT"
] | permissive | VictorTennekes/miniRT | 6bf4c647fe68f868e4903a116c0335b78c5a7a73 | a1589a2e3c3288bcacc660101ddfad06f391d3ef | refs/heads/master | 2020-12-19T15:03:45.510770 | 2020-09-02T23:46:34 | 2020-09-02T23:46:34 | 235,767,297 | 5 | 1 | null | 2020-03-08T19:51:04 | 2020-01-23T10:00:05 | C | UTF-8 | C | false | false | 1,321 | c | /* ************************************************************************** */
/* */
/* :::::::: */
/* pixel_put.c :+: :+: ... | [
"victor@tennekes.nl"
] | victor@tennekes.nl |
c157ad7bc5ff6956e55eac85eaefdd2f39391ddb | fac6deeff80453feab0bb3c216c13acf4780c107 | /tryit10-1.c | 49bf07e6feaf73dce14433ed67d5137465fe8678 | [] | no_license | hoangdonkey/Lab-06 | de26ca4a0922dc5eedb38e5233a6d3ef7a78bae4 | 63f1221e2ed3205ccb4d04ce95b59f2260d8b53d | refs/heads/master | 2022-12-24T00:20:51.065269 | 2020-09-24T12:39:08 | 2020-09-24T12:39:08 | 297,356,258 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 220 | c | #include <stdio.h>
void main(){
int age, i;
char name[40];
printf("Insert age: ");
scanf("%d", &age);
printf("Insert name: ");
fflush(stdin);
gets(name);
for(i = 1; i <= age; i++){
printf("%s\n", name);
}
} | [
"hoangdonkey@users.noreply.github.com"
] | hoangdonkey@users.noreply.github.com |
293b1311807d5ca4f4f29acc4c10766b11e4dfeb | de8c0ea84980b6d9bb6e3e23b87e6066a65f4995 | /3pp/linux/crypto/md5.c | 22dc60bc04375dad20b176f7d007d01039967cd1 | [
"MIT",
"Linux-syscall-note",
"GPL-2.0-only"
] | permissive | eerimoq/monolinux-example-project | 7cc19c6fc179a6d1fd3ec60f383f906b727e6715 | 57c4c2928b11cc04db59fb5ced962762099a9895 | refs/heads/master | 2021-02-08T10:57:58.215466 | 2020-07-02T08:04:25 | 2020-07-02T08:04:25 | 244,144,570 | 6 | 0 | MIT | 2020-07-02T08:15:50 | 2020-03-01T12:24:47 | C | UTF-8 | C | false | false | 7,616 | c | /*
* Cryptographic API.
*
* MD5 Message Digest Algorithm (RFC1321).
*
* Derived from cryptoapi implementation, originally based on the
* public domain implementation written by Colin Plumb in 1993.
*
* Copyright (c) Cryptoapi developers.
* Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
*
* This... | [
"erik.moqvist@gmail.com"
] | erik.moqvist@gmail.com |
f97da9329eb2a26f38fb1e614d160eda84e27f84 | d4a8b9edce85c0ed853d787bd54be28eb084545f | /algos2BJ/TP2/TP_Ptr_Fonctions/Exercice/individu.h | 325338d7d3f05395e709f85d57b05fe32f5b0286 | [] | no_license | Gereaume/L2 | 20b5a5d04cb21cc00440f4a78f85bf0471846662 | b10672658ac3f1f2887676a4c38b8fd979670b35 | refs/heads/master | 2020-04-20T01:14:07.969052 | 2019-02-07T12:44:35 | 2019-02-07T12:44:35 | 168,539,822 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 634 | h | #ifndef _INDIVIDU_H_
#define _INDIVIDU_H_
#include <objet.h>
/*
* DEFINITION OBJET "INDIVIDU"
*/
typedef struct individu_s
{
void (*afficher)(struct individu_s * const);
err_t (*detruire) (struct individu_s **);
char * nom ;
char * prenom ;
} individu_t ;
/*
* VARIABLE LOCALE
* declaration du compte... | [
"s161440@ic2s114-16.univ-lemans.fr"
] | s161440@ic2s114-16.univ-lemans.fr |
bde7ad5e8559259834207dd3fda7dbdc06d27565 | 90b1be629c43da15a2bfba7fcf60cd60c6634989 | /multithreading/lab2/utils.h | 05e749d10118badc83973b30bf1e42bab1e9327c | [
"WTFPL"
] | permissive | Azmalent/itmo7 | 539094e1b4a4a2aa7d22b08d2f266e439d8f1ccd | 75a67c6468ea8bbd24d166a645af42018a23c2f7 | refs/heads/master | 2020-07-24T20:28:56.428982 | 2020-01-24T10:37:42 | 2020-01-24T10:37:42 | 208,038,582 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,077 | h | #ifndef LAB2_UTILS
#define LAB2_UTILS
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include "types.h"
//Считает количество вхождений символа в строку
int count_occurences(char* str, char c)
{
int n = 0;
for (char* s = str; *s != '\0'; s++)
{
if (*s == c) n++;
}
return n;
... | [
"amatsu57@yandex.ru"
] | amatsu57@yandex.ru |
bf2e8045ef4edaaa1438f9b0b452be4a04abafc3 | f1cf15d3f0b4ff5d63891b1daedd2b23e8327311 | /6_8/8_4.c | 2ab7310735be3e340ed2c185898c45aa86a3d7f2 | [] | no_license | ligy118/wednesday_ljs | a7a42d6ed0078af90028dd6962eda57c79991d0c | 78da23e3692f91231eae01ef8bbc36e0e6b7d705 | refs/heads/master | 2021-01-17T12:36:22.173747 | 2016-06-19T16:18:49 | 2016-06-19T16:18:49 | 56,128,656 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 337 | c | #include<stdio.h>
void wap(int *,int *);
int main()
{
int a,b,c;
int *aa=&a,*bb=&b,*cc=&c;
scanf("%d%d%d",aa,bb,cc);
if(*aa<*bb) wap(aa,bb);
if(*bb<*cc) wap(bb,cc);
if(*aa<*bb) wap(aa,bb);
printf("%d %d %d\n",*aa,*bb,*cc);
return 0;
}
void wap(int *a,int *b)
{
int t;
t=*a;
*a... | [
"liguanya118@gmail.com"
] | liguanya118@gmail.com |
9160beed0640cc7f5f0c941291b661d9daa136fa | 903c45082bd0d4fbb0a0d6a289b5294d8d05c314 | /usr.bin/xlint/arch/sh3/targparam.h | 6a186a9e2988eeef8012b58402b3c2b93b6461e1 | [] | no_license | tombibsd/netbsd-src | 0552d62659412e821163c945c62b7555d1e616d2 | 7f0f8c8c4b00f7c47700b8260a5cbd627d73fe7c | refs/heads/master | 2021-01-21T04:54:21.541793 | 2016-06-17T00:56:40 | 2016-06-17T00:56:40 | 24,783,931 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,218 | h | /* $NetBSD$ */
/*
* Copyright (c) 1994, 1995 Jochen Pohl
* All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice... | [
"uebayasi@tombi.co.jp"
] | uebayasi@tombi.co.jp |
e0b9928c9687bc23d6d1acecb30c7632bbc7bd24 | 8eef49147b4bbaaf5203641882a31526da0bd36a | /Project_3/parity.h | c003320a284035512f1c403b67bcffea5cd3d4ab | [
"Apache-2.0"
] | permissive | Lexxi-Smith/Computer-Organization | 8786a09453426c40f38df1d66a722d4c92de0749 | 34d8eddc0ff823afcb37fd90e97cc71700b56b3d | refs/heads/master | 2020-11-28T11:37:03.727376 | 2019-12-31T17:45:50 | 2019-12-31T17:45:50 | 229,801,020 | 0 | 0 | Apache-2.0 | 2019-12-31T17:45:51 | 2019-12-23T18:08:14 | C | UTF-8 | C | false | false | 26 | h |
int parity_digit(int x);
| [
"aas492@nau.edu"
] | aas492@nau.edu |
75030c2e295d83a704a4741a2509aa3d0855b2e7 | 450cfe97fcfb292efda4616b8f4dbe61e5867e20 | /Components/hal/include/hal_defs.h | 26030fa8fb968f1aef103cda42758457a222aa67 | [] | no_license | monisha-keus/Zigbee_Embedded_switch_test | d50a7cf57d9e063b93ac50dfc81ced555b3dca24 | 878e5764843f199c0c92848901ef9e596cbf1626 | refs/heads/master | 2020-12-04T03:05:14.412348 | 2020-01-07T13:24:29 | 2020-01-07T13:24:29 | 231,581,404 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,847 | h | /**************************************************************************************************
Filename: hal_defs.h
Revised: $Date: 2014-11-19 13:29:24 -0800 (Wed, 19 Nov 2014) $
Revision: $Revision: 41175 $
Description: This file contains useful macros and data types
Copyright 2... | [
"monisha@keus.in"
] | monisha@keus.in |
4ad37bb87f4734303e8c07de04076adab725eb7d | f7860a663a68fcd8decba7025c98b203ecaabdc4 | /sys/fs/autofs/autofs_mount.h | b758d1b21ba911463433c24f44e4e75d86cff42b | [] | no_license | ozaki-r/netbsd-src | 0ea0b6c0ea9fb825ccd50c574629dfb2b1ed0179 | e8ddeb9cad6a8b3b515e78cb13338cb76b85d269 | refs/heads/wireguard | 2022-11-07T02:59:48.282889 | 2019-03-24T02:41:28 | 2019-03-24T04:18:09 | 20,287,693 | 11 | 2 | null | 2019-05-11T11:02:34 | 2014-05-29T08:40:47 | null | UTF-8 | C | false | false | 1,928 | h | /* $NetBSD: autofs_mount.h,v 1.2 2018/01/14 22:43:18 christos Exp $ */
/*-
* Copyright (c) 2017 The NetBSD Foundation, Inc.
* Copyright (c) 2016 The DragonFly Project
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Tomohiro Kusumi <kusumi.tomohiro@gmail.com... | [
"christos@netbsd.org"
] | christos@netbsd.org |
6a311d99c9416c4444818a39e5f5aa0ddcc49d1f | 0d630444bf99e68c222fe9f36472cc6561e38298 | /Rfile/GSRfileTemplate.h | 767e15177861e0537dafacc6377f8d7e15168d1f | [] | no_license | shilgapira/Rfile | b5d376b7fe3dbf710292285c8f5fc1dd51d83ab8 | 1d2296d31c5481a2869ecd5e29f2a21c75260104 | refs/heads/master | 2020-04-06T04:36:47.735768 | 2014-06-15T15:27:25 | 2014-06-15T15:27:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,965 | h | //
// GSRfileTemplate.h
//
// Copyright (c) 2013 Gil Shapira
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy... | [
"gshapira@gmail.com"
] | gshapira@gmail.com |
e733d55dc81bdd69074dd105bb497020070e7e51 | 135dc036d1a10b1672efd2cb10166578e9b7439d | /src/ctype/isalnum.c | 577729021e486fbe9c91c3ba2f9b960549229ab4 | [
"MIT"
] | permissive | jdh8/metallic | 4fd1ad8f8f0bde50bddab8983c2c2a21a2d73ba9 | a9e3ec4c9c36196dfd0ee1849da3cce04e681025 | refs/heads/master | 2021-06-04T17:55:27.991041 | 2021-03-03T02:01:32 | 2021-03-03T02:01:32 | 100,192,911 | 44 | 1 | null | null | null | null | UTF-8 | C | false | false | 81 | c | #include <ctype.h>
int isalnum(int c)
{
return isdigit(c) || isalpha(c);
}
| [
"chen.pang.he@jdh8.org"
] | chen.pang.he@jdh8.org |
704785bc0363dc68c56aac3398a6fbdec606f07f | 9ef519e5e7da0a98e733432bc359fe2682fb0364 | /3k-1s/architecture/laba4/benchit/tools/CBLAS/src/cblas_dtbsv.c | 025b5819944e3d05999a39cf2e8ee5e5f33acfd5 | [] | no_license | andreysher/study | 60cc8ab76c92aa9cc1c516b39d39f46c80c3c6ff | e313c3485a8ef837636f6500c0740eae6ee2692e | refs/heads/master | 2023-05-29T20:29:27.802854 | 2019-09-17T04:36:50 | 2019-09-17T04:36:50 | 99,763,536 | 1 | 0 | null | 2023-05-22T21:17:52 | 2017-08-09T04:02:12 | Python | UTF-8 | C | false | false | 3,298 | c | /*
* cblas_dtbsv.c
* The program is a C interface to dtbsv.
*
* Keita Teranishi 5/20/98
*
*/
#include "cblas.h"
#include "cblas_f77.h"
void cblas_dtbsv(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag,
const ... | [
"andreysher97@gmail.com"
] | andreysher97@gmail.com |
984b05b46aee5956dd9244edaf30b5ec4ab0ef9a | a72b971afe9829a4cc10a45409f37f3461d0434c | /clang/test/CodeGen/RISCV/rvv-intrinsics/vnsrl.c | a1ee09a127b888dd99d34aaa91b0be8a6db315cd | [
"Apache-2.0",
"LLVM-exception",
"NCSA"
] | permissive | liang0/llvm-project | daeaf0b9b3f4a9a9089e4b8b3450dc14a61eaa59 | eea5cbc8583d0857e0a9e429c61f7e87122b4dd6 | refs/heads/main | 2023-04-10T23:15:16.367331 | 2021-04-28T06:30:53 | 2021-04-28T06:30:53 | 362,362,633 | 1 | 0 | null | 2021-04-28T06:32:58 | 2021-04-28T06:32:57 | null | UTF-8 | C | false | false | 51,334 | c | // NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py
// REQUIRES: riscv-registered-target
// RUN: %clang_cc1 -triple riscv32 -target-feature +experimental-v -disable-O0-optnone -emit-llvm %s -o - | opt -S -mem2reg | FileCheck --check-prefix=CHECK-RV32 %s
// RUN: %clang_cc1 -triple riscv64 -targ... | [
"zakk.chen@sifive.com"
] | zakk.chen@sifive.com |
46d1e2eb1a43ca140d5f462cd6b895679126beef | c6cf44e98f0643af6108ec677ac51b83b88f217d | /Simulink/DIPCc - Energybounding/slprj/_sfprj/cdIPCbounding/_self/sfun/src/c43_cdIPCbounding.h | 1a9a0b735b421b0fad1a481939b0651eb72fdc6e | [] | no_license | dtbinh/MA | e4e9d1c38ce1a5e96f11952af13a4c72cd251812 | b3301f70e44c54d37d9ef0fddfef88bbeb4d4f58 | refs/heads/master | 2020-03-21T05:44:30.681988 | 2016-08-24T07:17:34 | 2016-08-24T07:17:34 | 138,177,086 | 1 | 0 | null | 2018-06-21T13:54:56 | 2018-06-21T13:54:56 | null | UTF-8 | C | false | false | 1,215 | h | #ifndef __c43_cdIPCbounding_h__
#define __c43_cdIPCbounding_h__
/* Include files */
#include "sf_runtime/sfc_sf.h"
#include "sf_runtime/sfc_mex.h"
#include "rtwtypes.h"
#include "multiword_types.h"
/* Type Definitions */
#ifndef typedef_SFc43_cdIPCboundingInstanceStruct
#define typedef_SFc43_cdIPCboundingInstanceStru... | [
"martin.angerer@tum.de"
] | martin.angerer@tum.de |
9ed4bf68bdadb5a2dd6a4a76ece0514b544ee832 | 5b7d0f4b79a411e2fba1ea24c9cf1d4af20f813d | /iOS7.0.3/System/Library/PrivateFrameworks/MultitouchSupport.framework/MultitouchSupport-Symbols.h | d13bd06b9dd3ae85d6bd7bfa6aecb1f5ceafb9ea | [] | no_license | ichitaso/iOS-iphoneheaders | 07ebebac9afb043f10d921c15f24c44ce664b800 | e0e0b2f57eeb94a0d07036e6dc14472cd1972843 | refs/heads/master | 2023-06-08T08:07:00.244639 | 2023-05-28T11:03:07 | 2023-05-28T11:03:07 | 21,318,634 | 81 | 57 | null | 2018-05-14T19:47:30 | 2014-06-29T07:24:01 | null | UTF-8 | C | false | false | 13,719 | h | _ALGFlipBorderImageVertically
_DSPSignExtend12Bits
_DSPUnPack12BitImage
_DSPUncompressRLE
_DSPUncompressRLE16
_MTAbsoluteTimeGetCurrent
_MTBreakpoint
_MTCompactBinaryContactUnpack
_MTCompactV3HeaderUnpack
_MTCompactV3orV5BinaryContactUnpack
_MTCompactV4BinaryContactUnpack
_MTCompactV4HeaderUnpack
_MTCompactV5HeaderUnpa... | [
"willfeeltips@gmail.com"
] | willfeeltips@gmail.com |
6213b79e52b232f579ac5d076a557e207a90e924 | 25d4305fc5b74fc3fb6d93ab77cac2c27c4ddb47 | /JuceLibraryCode/modules/juce_events/juce_events.h | 32204a71c3021e51ce35bdb3e64e71f231c5231f | [] | no_license | Alkamist/AlkamistMIDIDelay | 0c6ed7d2af41534f5fac122fbd83f113e385b3be | 3263ef47023101264ce48e47f988d37f6038dd36 | refs/heads/master | 2016-09-01T14:22:11.851235 | 2015-10-07T14:55:40 | 2015-10-07T14:55:40 | 43,505,418 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 205 | h | // This is an auto-generated file to redirect any included
// module headers to the correct external folder.
#include "../../../../../Programming Documents/JUCE-master/modules/juce_events/juce_events.h"
| [
"coreylehman@me.com"
] | coreylehman@me.com |
002da949d48d6efbd924a77341f7079d2e72f230 | 5abb2cb7bb76253a1d6b7258ebf685e357acba98 | /bsp/stm32/stm32h750-artpi-h750/board/port/drv_sdio.c | 81e65e1bed06085f959eef814dcb4456d1c19162 | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla",
"GPL-2.0-only",
"Zlib",
"BSD-4-Clause-UC",
"X11",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | weiZhongIn/rt-thread | 341a392e4f2b094ac73dd5e5176aec182f6edd09 | 7039d4b5e353c9416aae02d6eb6dd9b14b6864c5 | refs/heads/master | 2023-08-20T12:59:40.512672 | 2021-10-01T17:47:44 | 2021-10-01T17:47:44 | 344,383,742 | 1 | 0 | Apache-2.0 | 2021-10-01T17:47:45 | 2021-03-04T07:14:39 | C | UTF-8 | C | false | false | 12,414 | c | /*
* Copyright (c) 2006-2020, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2020-05-23 liuduanfei first version
*/
#include "board.h"
#ifdef RT_USING_SDIO
#if !defined(BSP_USING_SDIO1) && !defined(BSP_USING_SDIO2)
#error "Pl... | [
"369247354@qq.com"
] | 369247354@qq.com |
165d2993e8cdd6329ac8877dfbd2bd9b7aaf1ea9 | 366e3897e7509245e01383884829ec8be044c3d6 | /lista 4/q3.c | e86bdf5435c9bdf3f04bffc9a71258b01103e3a2 | [] | no_license | ravileal/exercicios_-_2017.1_FUP | 743c0f542917a83cbf5b2123809ba32db41d8686 | 02d5b7e608c5ae18911e1fb7eaff8498d6c61356 | refs/heads/main | 2023-02-28T09:56:21.434248 | 2021-02-01T00:55:06 | 2021-02-01T00:55:06 | 334,791,931 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,886 | c | #include <stdio.h>
float valorHora(float vh);
float auxilio(float porcentagem, float salario);
void funcionarios();
int main(){
funcionarios();
return 0;
}
void funcionarios(){
int i, cod, horasT, erro=0;
char turno[1], categoria[1];
float salarioI, ax, valorH;
printf("\nCategorias : G ou ... | [
"42724238+ravileal@users.noreply.github.com"
] | 42724238+ravileal@users.noreply.github.com |
4e197ec0dfe47ef8d36f0031e0f51a930c7a873f | 9271f6fc412de95e8e77447f6be9604ab2aa684b | /compute-accuracy.c | dcf89740f594cba70d15b043190afd3413628e3f | [
"MIT"
] | permissive | ljk423/word2vec | 89174a3ab8bf0024344dc8180610460f5fc71003 | caebff69dbf57cabdb8ac3ad147d6aa7a6b371be | refs/heads/master | 2020-03-22T08:37:04.592759 | 2018-01-11T10:15:30 | 2018-01-11T10:15:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,297 | c | // Copyright 2013 Google Inc. All Rights Reserved.
//
// 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 appl... | [
"loretoparisi@gmail.com"
] | loretoparisi@gmail.com |
7f47eb95331a19f36b81c5678fdbd70bb4d0d612 | dc3965644b356c72b142b19bb5e102e414bea73f | /Malwarebytes/v4.0.4.49/Malwarebytes-Disabler/Shellcode/MbamInterfaces/PoliciesController_i.c | 4811bebe54a74318e0a9c6975c1101ce9145c83e | [] | no_license | sasqwatch/Antimalware-Research | 40960f0c1b94a3134d8ea5893201b7f92f6e1c70 | eba7253b71b2aa30c2d19c2e448d8376afdd928e | refs/heads/master | 2022-11-24T09:02:58.429417 | 2020-07-25T11:58:47 | 2020-07-25T11:58:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,819 | c |
/* this ALWAYS GENERATED file contains the IIDs and CLSIDs */
/* link this file in with the server and any clients */
/* File created by MIDL compiler version 8.01.0622 */
/* at Tue Jan 19 14:14:07 2038
*/
/* Compiler settings for C:\Users\User\source\repos\MBAMExploit\Typelibs\PoliciesController.IDL:
... | [
"noreply@github.com"
] | sasqwatch.noreply@github.com |
aba220707461b20d18049204ef09247ff8a4a503 | 0f5d61fd525c347d574d7febc098b2182cb9562e | /src/mod/applications/mod_dptools/mod_dptools.c | 0c17eab6f573d715fa303ea6914aa48dc0e05068 | [] | no_license | thrill007/freeswitch-new | 934a17e1887ce433d75e0987f06f45f399ff12ba | 21db6b879d1185185bb620ec10cf5352d7a80592 | refs/heads/master | 2021-04-28T06:23:28.719918 | 2018-02-06T02:55:20 | 2018-02-06T02:55:20 | 122,199,590 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 202,890 | c | /*
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
* Copyright (C) 2005-2015, Anthony Minessale II <anthm@freeswitch.org>
*
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except i... | [
"lifeng0604@139.com"
] | lifeng0604@139.com |
e6fdcb682fa4a29acfba3e629af81190d77a8df4 | 41708648ada76d1a9a52fb3c15168c80a7623709 | /Drivers/MAX30001/MAX30001.h | 85d584fce5d6dcb153f3f52ea1d103e50d0fe43d | [] | no_license | xuzheng821/MAX30001_BLE | edfc5d6beaeac01392f79740c6ac0bc6c9f222f7 | 0de54aef28ab1806527890421b465050f311cf1d | refs/heads/master | 2022-11-20T12:27:32.629989 | 2020-07-14T19:25:58 | 2020-07-14T19:25:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 27,676 | h | /*******************************************************************************
* Copyright (C) 2015 Maxim Integrated Products, Inc., 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 i... | [
"47610757+ivrhoci@users.noreply.github.com"
] | 47610757+ivrhoci@users.noreply.github.com |
24100ce3443d94249c51870e1df351ad3e525cd4 | 3d643e50e304d3ffd3f697905e441556be377cfc | /ios/Pods/Headers/Private/ABI36_0_0React-Core/ABI36_0_0React/ABI36_0_0RCTDevMenu.h | ddb57f6dc3598d719e5894140e8f07514a833f85 | [
"BSD-3-Clause",
"MIT",
"Apache-2.0"
] | permissive | Qdigital/expo | 326c5c1c0167295c173f2388f078a2f1e73835c9 | 8865a523d754b2332ffb512096da4998c18c9822 | refs/heads/master | 2023-07-07T18:37:39.814195 | 2020-02-18T23:28:20 | 2020-02-18T23:28:20 | 241,549,344 | 1 | 0 | MIT | 2023-07-06T14:55:15 | 2020-02-19T06:28:39 | null | UTF-8 | C | false | false | 98 | h | ../../../../../versioned-react-native/ABI36_0_0/ReactNative/React/DevSupport/ABI36_0_0RCTDevMenu.h | [
"esamelson@users.noreply.github.com"
] | esamelson@users.noreply.github.com |
386bc0d3a2351699f60f5fff3be720472ad12029 | 99f8db6bece60eb87b5fe196401d5111c6c8fa3f | /Transport/include/external_libs.h | e667cd9e1b7013d7dda0f1cc392f21868a23ef98 | [] | no_license | songpu2015617/Research-Project | ab1a4107d82b84f4cfafeca2c6f7876ffceb2831 | d64b427c4539daeb1840ffb3147783c9d8cef227 | refs/heads/master | 2020-07-06T22:01:06.643267 | 2016-11-17T16:07:38 | 2016-11-17T16:07:38 | 74,043,585 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,951 | h | #ifndef _EXTERNAL_LIBS_H
#define _EXTERNAL_LIBS_H
#include "common.h"
//------------------------------------ MPI functions ---------------------------------------------
extern "C" {
void gsyncX();
void gabcastX(int type, char* x, int n, int root);
void gdbcastX(int type, double* x, int n, int root);
void ... | [
"noreply@github.com"
] | songpu2015617.noreply@github.com |
5bbb8fa2cc1ae307e42844446d87633a11c99775 | fa5aa46a6b9cf26c9bc7366e10a072ab0c90a602 | /code/Interface.h | c85b32785e743848a788141efbe4157dd988b551 | [
"MIT"
] | permissive | JacobGrig/Graph-Implementation | 02f083dd93cb03c81154981898fd6a9ef8da88fe | dee6c003d4060fd93902edeb565e0392cad1b62c | refs/heads/main | 2023-02-19T02:49:05.004920 | 2021-01-17T19:27:50 | 2021-01-17T19:27:50 | 330,468,068 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 63 | h | #pragma once
#include "Distances.h"
void start_graph (void);
| [
"jacobgrigoriev1997@gmail.com"
] | jacobgrigoriev1997@gmail.com |
cbce7df0c441a2e618f95beaae98bdec6fa8b82e | 7873d7c02e558e441aa18f1a6cc294d60c8ba955 | /Projects/STM324xG_EVAL/Examples/BSP/Src/eeprom.c | a8815c31156382174aaece413390d37ba4368208 | [
"BSD-2-Clause"
] | permissive | studoret/STM32F401-Discovery_FW_F4_V1.5.0 | f76d745269cff2efd1b3d8098f01b6acf0f2f28e | caefe32dbe0e41d88f6ccb013a2b6efd8bf4f835 | refs/heads/master | 2021-01-20T23:16:55.866618 | 2015-04-06T17:03:07 | 2015-04-06T17:03:07 | 33,266,372 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,419 | c | /**
******************************************************************************
* @file BSP/Src/eeprom.c
* @author MCD Application Team
* @version V1.2.1
* @date 13-March-2015
* @brief This example code shows how to manage an I2C M24C64
* EEPROM memory
********************... | [
"studoret@free.fr"
] | studoret@free.fr |
2c508482ed265ea63ba1d68ba2d527951547bcaa | 337f98752bc3f7b4a3a08ffe790d982328d1f1b0 | /Folder 4/Praktikum/Bil Ganjil.c | bc3ba1e69290c7a97501771ed5956f15b81815df | [] | no_license | ferry5245/Praktikum | 6d790cfb062f36f1166476f0d4d9b94e1cecbe33 | cf12d912f38c15313b958ad6ad370727677f2ddd | refs/heads/main | 2023-07-05T13:35:43.652136 | 2021-08-07T12:49:46 | 2021-08-07T12:49:46 | 393,682,274 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 214 | c | #include <stdio.h>
main(){
int i,n,a;
i=1;
a=1;
printf("Masukan N : "); scanf("%d",&n);
while(i<=n){ //Tentukan variabelnya
printf("%d ",a);
a=a+2; //Tentukan variabelnya
i++; //Tentukan operasinya
}
}
| [
"ignatiusferry5245@gmail.com"
] | ignatiusferry5245@gmail.com |
41b175094fb5f35deb17f366f9780964d5e5295b | eb53575eb198748542573170d98b9322dc5b93f5 | /libft/ft_putnbr_fd.c | 551f4f33d44389e48a8496920e4adf40a371eb38 | [] | no_license | d-mather/libft | d7b5abcf56be495516dca961982636e44630db36 | a90515cda09a365d2255e0d950163103a04cfd1e | refs/heads/master | 2020-04-06T07:10:38.212960 | 2020-01-14T08:09:41 | 2020-01-14T08:09:41 | 59,894,524 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,130 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putnbr_fd.c :+: :+: :+: ... | [
"noreply@github.com"
] | d-mather.noreply@github.com |
46ab5335bd7d5ee0be7829605d2adef9297fb952 | fd2837aef61176323fb6d8eb647b20debe7995f5 | /CSAPP/sa-bAbi/working/8ea494e6da.c | 74550c9b36c2aac58736a968b7ea250f23d9fc10 | [] | no_license | callMeBigBen/CourseWork | b0ef17b5cfe07ba61404abd68812d2b56393db87 | 41d68c07f7b1411dbca7dc7d5e2efeceb9edee27 | refs/heads/master | 2020-04-10T08:18:21.617984 | 2019-05-22T05:26:38 | 2019-05-22T05:26:38 | 160,902,512 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 499 | c | #include <stdlib.h> // Tag.OTHER
int main() // Tag.OTHER
{ // Tag.OTHER
int* entity_2; // Tag.BODY
int entity_8; // Tag.BODY
int* entity_3; // Tag.BODY
entity_2 = new int(rand()); // Tag.BODY
entit... | [
"33094628+callMeBigBen@users.noreply.github.com"
] | 33094628+callMeBigBen@users.noreply.github.com |
1cef875064868772a4f8a506a6db8709576fb073 | 8450801781c5893d34255f6aedc3efcd56369916 | /src/HAL9000/src/test_process.c | 0fa25ee0f1fb4bbd66a5c6940d00b03e19081f50 | [] | no_license | vladr11/OSD-Team-Happy-Coding | 5f121c9c25b2fb7d915126c9333d939d96771150 | a451bcfed4acaa35f933db011b8c427cd9bbed48 | refs/heads/master | 2021-05-15T16:54:34.003670 | 2017-11-23T21:18:54 | 2017-11-23T21:18:54 | 107,553,291 | 1 | 0 | null | 2017-11-23T21:18:55 | 2017-10-19T13:55:23 | C | UTF-8 | C | false | false | 6,870 | c | #include "test_common.h"
#include "test_process.h"
#include "process.h"
#include "iomu.h"
#define MAX_PROCESSES_TO_SPAWN 16
const PROCESS_TEST PROCESS_TESTS[] =
{
// Project 2: Userprog
// arguments
{ "TestUserArgsNone", "Args", NULL},
{ "TestUserArgsOne", "Args", "Argument"},
{ "TestUse... | [
"cszabo-lpt@cszabo-lpt.clj.bitdefender.biz"
] | cszabo-lpt@cszabo-lpt.clj.bitdefender.biz |
e8102814736887f5e85ae18faf1175da48d829c8 | b70b0919c83a760ac9d4643e659dca7ed838562e | /lkt/通用加密算法源码/3DES-SHA1源码/sha1.c | de8ef2297b35d1cccd57223c9755b9859393bdd4 | [] | no_license | dmr1993/bbm_demo | 839add3a0f1815064d04a3f196d7beb1e3a2d964 | eafb17f7f0dc587d47dfbc57f4b425c9038642a1 | refs/heads/master | 2020-07-08T07:46:45.328731 | 2019-09-01T06:22:17 | 2019-09-01T06:22:17 | 203,607,740 | 0 | 0 | null | null | null | null | GB18030 | C | false | false | 9,960 | c | /* sha1.c */
/* 以下所用各种参量名称皆为sha-1在出版物上所用之公用名称 */
#include "sha1.h"
/*
* 以下是为 SHA1 向左环形移位宏 之定义
*/
#define SHA1CircularShift(bits,word) \
(((word) << (bits)) | ((word) >> (32-(bits))))
/* 局部函数原型 */
void SHA1PadMessage(SHA1Context *); /* 定义填充信息指针 */
void SHA1ProcessMessageBlock(SHA1Context ... | [
"1174075325@qq.com"
] | 1174075325@qq.com |
1d40db6272eae9bc5afa0728c93b315a152ba4f9 | df506359b32af23d70a37ee792260098f00bfb68 | /esps/ESPS/ATT/dsp32/inc/linenum.h | 43daf9d5e936c95b4f493674ec1b97b8fa8ccd6b | [
"BSD-3-Clause",
"LicenseRef-scancode-newlib-historical",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | RobBullen/AudioMorphing | df02f1e396ee8231b59b6c15606c32cbbd2cb765 | fb38b9c110341a1b3cbb4927e454c76b47de2c97 | refs/heads/master | 2021-01-16T19:50:46.986868 | 2012-05-14T23:15:00 | 2012-05-14T23:15:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 778 | h | /*
* static char ID_lnumh[] = "@(#)linenum.h 1.1 11/21/89 ATT ESI";
* NOTE: DSP3AS REQUIRES THIS STRUCTURE TO CONTAIN l_name.
* I AM NOT SURE ABOUT IMPLICATIONS FOR COMPATIBILITY.
*/
/* There is one line number entry for every
"breakpointable" source line in a section.
Line numbers are grouped on a per f... | [
"bullen.rob@gmail.com"
] | bullen.rob@gmail.com |
9d5b6948cab7c086892df7f8827fbdb39bea6a61 | d15d3301aee69008d48ef6eceebaacb867f8c972 | /src/serial.c | b5151a7835fbc85182e9cc680d5e198f79b44eb7 | [] | no_license | ryan-summers/SUBLIBinal_Packetizer_Windows | baad45248d4cf9cb2f4c7d51e087d3edd78aaa21 | 065260e796581fa5ca3868c6daed7286d4e9f3bc | refs/heads/master | 2021-01-10T04:32:31.492405 | 2016-01-01T01:18:48 | 2016-01-01T01:18:48 | 48,863,713 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,674 | c |
#include "serial.h"
/*
SUBLIBinal_Packetizer_Windows - GNU GPLv2 Notice
Copyright (C) 2015 Ryan Summers and James Irwin
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 versi... | [
"summers.ryan.m@gmail.com"
] | summers.ryan.m@gmail.com |
683bf0db7aaf99567f457a7ce975d823d1cdd27b | 04f40e76b33cf38e548586f6f19a3404c792a7a0 | /WeekofCode30_0313/RangeModularQueries/main.c | ab75a21ab73ef2cb6700141611adc7f2c81ed3c1 | [
"MIT"
] | permissive | wuxingyu1983/HackerRank | 0b8469ac8b18eb25f4b61446006c12a4bd67474e | d76ad8cf7f1bf6ff4f1f30c905d38e35c0f27bf8 | refs/heads/master | 2023-05-13T02:19:44.198036 | 2023-04-28T10:51:13 | 2023-04-28T10:51:13 | 81,790,400 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 689 | c | #include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <limits.h>
#include <stdbool.h>
int main(){
int n;
int q;
scanf("%d %d",&n,&q);
int *a = malloc(sizeof(int) * n);
for(int a_i = 0; a_i < n; a_i++){
scanf("%d",&a[a_i]);
}
int * c = malloc(sizeof... | [
"wuxingyu1983@gmail.com"
] | wuxingyu1983@gmail.com |
ae1a9034545a93fc81d49bcdf8d738ec834a76ba | 378b9d7b9c16ffe9a2c4bed562559f19db042c09 | /Zend/zend_builtin_functions_arginfo.h | 005d148cedb6e3199970be0ec9abf1ff2555d2c0 | [
"Zend-2.0",
"BSD-4-Clause-UC",
"LicenseRef-scancode-other-permissive",
"IJG",
"TCL",
"Zlib",
"OLDAP-2.8",
"BSD-3-Clause",
"ISC",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"GD",
"PHP-3.01"
] | permissive | hjtcn/php-src | 5c91d5b1a300a659655230f8da844c01c6c7c8f5 | ab76c613fed4b05fac8496b40fbc0941ed25af30 | refs/heads/master | 2020-07-08T21:43:59.351568 | 2019-08-22T09:09:44 | 2019-08-22T10:56:32 | 203,782,500 | 1 | 0 | NOASSERTION | 2019-08-22T11:37:30 | 2019-08-22T11:37:29 | null | UTF-8 | C | false | false | 6,884 | h | /* This is a generated file, edit the .stub.php file instead. */
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_zend_version, 0, 0, IS_STRING, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_func_num_args, 0, 0, IS_LONG, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_func_get_arg, 0, 0... | [
"nikita.ppv@gmail.com"
] | nikita.ppv@gmail.com |
e1eff65d2d2d6bea71060fe11a49af38a0517898 | 3302516441fec0a5705c4526b20021c210234e4d | /c/linear/array/array.h | 0db2ab2098fc4be90757221d74735abf7317275f | [] | no_license | basicsaki/datastructures-with-C | a77852961d5ebd8748597c85119098363e28e15e | b95d67a39ea4a8ec424ccdcf14f5ad408cec0325 | refs/heads/master | 2023-02-18T05:02:16.399430 | 2021-01-20T12:00:58 | 2021-01-20T12:00:58 | 238,872,851 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 38 | h | #include <stdio.h>
void arraymain();
| [
"akhilesh.sharma@imaginea.com"
] | akhilesh.sharma@imaginea.com |
6790e0bb8a1e80abf17b045d4fd5bbc1242f6545 | b477697f95728fbf8d1759a73858860c9620c3ab | /peripheral/ebi/processor/ebi_p32mz1024ech100.h | b367a0cbd4c4379b148192010bc6bc87147446e1 | [] | no_license | gmuro/harmony-v2_06-framework | 12bcb30c2dc9f4737aab8762da8b25632822d00e | 2196b67de35af9d1126b539b08324cf72ed13521 | refs/heads/master | 2022-12-07T19:24:34.649360 | 2022-11-18T22:16:49 | 2022-11-18T22:16:49 | 190,900,209 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 13,934 | h | /* Created by plibgen $Revision: 1.31 $ */
#ifndef _EBI_P32MZ1024ECH100_H
#define _EBI_P32MZ1024ECH100_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 fu... | [
"gustmuro@gmail.com"
] | gustmuro@gmail.com |
6f87e945dac05efc543a75324c5ab77230491f8c | ef4f76711de7b2f297a4bc8fe8b4b03741ed9d94 | /android_opus/jni/libventrilo3/libventrilo3.c | 80a4087dde8fa161e1618353b45c19d8aef9d03b | [] | no_license | thinkdot/android_opus_tools | e9afda2c02ad4d0477d97cad62c43583d012906c | 2bab6ed646f0817aeca7f027fd88effa43b66190 | refs/heads/master | 2021-01-02T22:58:44.315907 | 2013-11-08T02:39:37 | 2013-11-08T02:39:37 | 14,193,271 | 6 | 2 | null | null | null | null | UTF-8 | C | false | false | 195 | c | /*
*modifed by liyong 1011
*/
#include <stdio.h>
#include <opusenc.h>
#include <libventrilo3.h>
//add by liyong 1012
void my_opus_encode(char* input, char* output) {
my_main(input,output);
} | [
"duwei_wangle@163.com"
] | duwei_wangle@163.com |
e1e197a2c1ee03380fce35a57ad15e9e0ea93e53 | c057e033602e465adfa3d84d80331a3a21cef609 | /C/testcases/CWE127_Buffer_Underread/s04/CWE127_Buffer_Underread__wchar_t_alloca_memmove_31.c | 073981c2f35bcc68ab976ed7ece6430f1700ab8d | [] | no_license | Anzsley/My_Juliet_Test_Suite_v1.3_for_C_Cpp | 12c2796ae7e580d89e4e7b8274dddf920361c41c | f278f1464588ffb763b7d06e2650fda01702148f | refs/heads/main | 2023-04-11T08:29:22.597042 | 2021-04-09T11:53:16 | 2021-04-09T11:53:16 | 356,251,613 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,184 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE127_Buffer_Underread__wchar_t_alloca_memmove_31.c
Label Definition File: CWE127_Buffer_Underread.stack.label.xml
Template File: sources-sink-31.tmpl.c
*/
/*
* @description
* CWE: 127 Buffer Under-read
* BadSource: Set data pointer to before the allocated memory buffe... | [
"65642214+Anzsley@users.noreply.github.com"
] | 65642214+Anzsley@users.noreply.github.com |
fe22daea7cc6e3eb028e845464a2eedaea63954e | da2736dd07228606130ccf5c4492a4628ed87c14 | /software/src/queue.c | 3078c320c0b1de06c4336af66d7b2376d0b74e62 | [] | no_license | osannolik/quad-imu | a85279acc9f226925b1342f5a49eb75557631570 | f72283d32d94341076f1aa402da954931cf03e80 | refs/heads/master | 2021-04-12T11:16:43.531477 | 2016-12-25T23:09:30 | 2016-12-25T23:09:30 | 61,867,923 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,593 | c | /*
* queue.c
*
* Created on: 14 nov 2015
* Author: osannolik
*/
#include "queue.h"
int queue_Init(volatile queue_t *q)
{
if (q == NULL)
return -1;
q->idxNew = 0;
q->idxOld = 0;
uint32_t i;
for (i=0; i<QUEUE_PBUF_LEN; i++)
q->pBuf[i] = (queue_data_type_t) 0;
return 0;
}
int queue_... | [
"jonas@godtycklig.se"
] | jonas@godtycklig.se |
0e0b3019c4e4f709e75fc81a166f4f4ec10f5c81 | 21212b49a0af187ba8a1099261c977a0e06a5614 | /2019/WebUsb/ext/webotherm_firmware/TFTPc.h | 6c62ac6ffdbbc6a482d8e61cdd5f99b4442851a5 | [] | no_license | gabonator/Education | 02e89f46aac235cb2f8165d8a7688d8d7864758a | 8824d61cd51110348e9670b315f4e73c9b2b857d | refs/heads/master | 2023-05-11T02:48:49.518485 | 2023-05-10T20:19:49 | 2023-05-10T20:19:49 | 229,837,930 | 40 | 4 | null | null | null | null | UTF-8 | C | false | false | 15,782 | h | /*********************************************************************
*
* TFTP Client module for Microchip TCP/IP Stack
*
*********************************************************************
* FileName: TFTPc.h
* Dependencies: StackTsk.h
* Processor: PIC18
* Complier: ... | [
"gvalky@sygic.com"
] | gvalky@sygic.com |
0ce43514ec4e7c97af483dc7ab06317da7e03a17 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/0c5c6fe0-a930-4312-9e63-d0bad468c7e3.c | 92e878510131118acac7ba4eee65dcc4cb0feaf6 | [] | 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 | 595 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=0;
int j=122;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = i/j;
l = l%j;
l = i%j;
j = k-k*i;
//variables
/* START VULNERABILITY */
int a;
char b[58];
char c[71];
a = 0;
do {
a--... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
d27621b091866fcee040599157feaf47380d40e5 | fb59869c996d91e15206aa6cd82264f45bd1fc5a | /project_1/project_1.sim/sim_1/behav/xsim/xsim.dir/TB_counterNegative_behav/obj/xsim_1.c | 0a34658388fc9562e6393a7f0a6e894d1a7100f5 | [] | no_license | KuzscoTech/NGCP- | 967888405be76f571371c63e1cd1fafc9c904de4 | 6873365112dc834c3cf36d34f02fe8c14ea42575 | refs/heads/main | 2023-07-02T03:17:15.278604 | 2021-08-07T05:06:02 | 2021-08-07T05:06:02 | 393,584,879 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,542 | c | /**********************************************************************/
/* ____ ____ */
/* / /\/ / */
/* /___/ \ / */
/* \ \ \/ ... | [
"kuzscotech@gmail.com"
] | kuzscotech@gmail.com |
da843e26b0b8bad95c1bff1aad7fb9a1a3d79c7e | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/net/rras/ip/fltrdrvr/ioctl.c | 4a8859fac0d97cf778662e532a2f6f36a912aab4 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 116,082 | c |
/*++
Copyright (c) Microsoft Corporation
Module Name:
ioctl.c
Abstract:
Author:
Revision History:
--*/
/*----------------------------------------------------------------------------
A note on the interlocking, as of 24-Feb-1997.
There are two important locks: the FilterListResourceLock which is
a resou... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
f8e2fd17804bc7c268ab148ff7c62c10031cf154 | ae99e4a67b0e55cbd8bbdfcf459346117dbead32 | /lab1/task2/encoder.c | cc89e3cddd439fc27e62c11d23176e33b04cb89f | [] | no_license | jeniaka/C-Labs | 42b26bc0c619ef4074ea7fe668fcc366f8a02d0e | aa8a53012ea356093769c7134f693676d104bdac | refs/heads/master | 2022-12-15T17:10:44.079870 | 2020-09-09T07:29:13 | 2020-09-09T07:29:13 | 294,028,090 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,270 | c | #include<stdio.h>
#include<string.h>
#include <stdlib.h>
//FILE *in = stdin;
FILE *out = NULL;
FILE *in=NULL;
int ch;
int i=0;
int beforeCh;
int debug=0;
char *jumpword;
int changedC;
int encriptsign=0;
int cycle=0;
int writefileMode=0;
int readfileMode=0;
char* file;
char* fileRead;
int nextJump()
{
int j = cycle;
... | [
"noreply@github.com"
] | jeniaka.noreply@github.com |
25ddc8323bb7946e35384a2fbf8de573f53e59ac | 30b1035c2c2c920df702f774e781131b0822f260 | /l3/vm/src/memory.h | 266870fb17e5bac973f2f5b3bf8c9f460b56cde9 | [] | no_license | MikaelMorales/l3Compiler | 7989fab310be37b1f5f292d33efc2a0244a431c5 | acacb9e5a18a59485c5545b27fcdb44e471284d6 | refs/heads/master | 2020-03-15T06:33:13.797387 | 2019-06-07T11:43:19 | 2019-06-07T11:43:19 | 132,009,999 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 957 | h | #ifndef MEMORY_H
#define MEMORY_H
#include <stdlib.h>
#include "vmtypes.h"
typedef enum {
tag_String = 200,
tag_RegisterFrame = 201,
tag_Function = 202,
tag_None = 255
} tag_t;
/* Returns a string identifying the memory system */
char* memory_get_identity(void);
/* Setup the memory allocator and garbage col... | [
"morales.mikael@outlook.com"
] | morales.mikael@outlook.com |
1d523a1879c3099e7d2c7690270634367187463c | a153fa3f4a84e2e2d7b7ef576e46ac9f6950df1e | /project_2/src/memory.c | e467a5f6efe8e49bd6297dbc46531c82d85d2291 | [] | no_license | ccasadio/ecen5813 | fe3802e599ece26e3ad166dd199b1de21cd68866 | 0045b8fbdd242b0e934ea352e6008f8ab2524e7a | refs/heads/master | 2021-03-22T05:22:40.054007 | 2017-11-02T19:01:33 | 2017-11-02T19:01:33 | 104,528,376 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,845 | c | /*****************************************************************************
* Copyright (C) 2017 by Christian Casadio
*
* Redistribution, modification or use of this software in source or binary
* forms is permitted as long as the files maintain this copyright. Users are
* permitted to modify this and use it as they... | [
"casadiochristian@gmail.com"
] | casadiochristian@gmail.com |
2330eb3778cf76b051686449117585eaef6d5209 | f1c39fcf9f40801a8ae4a317706d1877bfa8fe8b | /checkboard 1 0.c | 563548c72ae3054cab976adee5e13b14d0c3383e | [] | no_license | Imammulh/Belajara-bahasa-C | 872587ef17c2d9134fa0eac0b4e06d249aeceb35 | 13b1eef179b55e6b1cb0dfef43b85a11a6ed7897 | refs/heads/master | 2021-06-13T03:25:28.859822 | 2021-05-16T14:42:55 | 2021-05-16T14:42:55 | 254,421,249 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 216 | c | #include <stdio.h>
int n, i, j;
int main(){
scanf("%d", &n);
for(i=1;i<=n;i++){
for(j=1;j<=n;j++){
if((i+j)%2==0) printf("0");
else printf("1");
if(j==n) printf("\n");
else printf(" ");
}
}
}
| [
"imam_chelsea2@apps.ipb.ac.id"
] | imam_chelsea2@apps.ipb.ac.id |
d6ca7311e7bdb25d5984f8ff51983295669eafff | 77ba42bf3d706f0b70e4330c3d0b20974a83cbca | /bpf/netcost-bpf.h | 43b3584d91d6894194620fec816cb01ee235a08c | [
"Apache-2.0"
] | permissive | isabella232/netcost | 6358068b2bccb6d4049bc8ac76a935eb79aba2e8 | 6b06518ddf2c058b4249972cc4baeba1ddb051fe | refs/heads/master | 2023-04-09T16:37:40.534136 | 2020-10-25T16:30:38 | 2020-10-25T16:30:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 184 | h | #ifndef __NETCOST_BPF__
#define __NETCOST_BPF__
#include <linux/bpf.h>
struct cidr_stats {
__u64 bytes_recv;
__u64 bytes_sent;
__u64 packets_sent;
__u64 packets_recv;
};
#endif
| [
"noreply@github.com"
] | isabella232.noreply@github.com |
1d28c62088e6bd3289a70ea60e063581eb9b6ba0 | b367fe5f0c2c50846b002b59472c50453e1629bc | /xbox_leak_may_2020/xbox trunk/xbox/private/windows/directx/dsound/initlib/AC3Dolby3.h | e2cb37f4d6a30ecdd5aab72cd3566aa75ea6126e | [] | no_license | sgzwiz/xbox_leak_may_2020 | 11b441502a659c8da8a1aa199f89f6236dd59325 | fd00b4b3b2abb1ea6ef9ac64b755419741a3af00 | refs/heads/master | 2022-12-23T16:14:54.706755 | 2020-09-27T18:24:48 | 2020-09-27T18:24:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 16,178 | h | 0xD01B40, 0x000652, 0x030150, 0x8C0B75, 0x20000B, 0x0D1002, 0x00064B, 0x0D1080, 0x00063B, 0x57F400, 0x000010, 0x300000, 0x0D1080, 0x000233, 0x44F400, 0x000000, 0x200045, 0x057400, 0x0D1080, 0x00063F, 0x00000C, 0x46F461, 0x000010, 0x230700, 0x06D910, 0x00000A, 0x50D97C, 0x057407, 0x21E478, 0x0C1E46, 0x0C1E90, 0x21E449, ... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
b52c9b040974789f2fda7c9c379fc47db02e9ba9 | 15808f056f9d04e598febf604eb454ab17de63af | /SourceCode/C/019_simple_uboot/code/setup.h | 40ad172671564134ef9b887847099cb3bbbc778c | [] | no_license | lian494362816/jz2440 | add7ea1e7090bf195926767425712f1537c78fc5 | 2d42788b20b6a7879bd20a777628f86b4f17b11f | refs/heads/master | 2020-04-12T18:17:32.568210 | 2019-11-14T23:44:48 | 2019-11-14T23:44:48 | 162,675,203 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,629 | h | /*
* linux/include/asm/setup.h
*
* Copyright (C) 1997-1999 Russell King
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Structure passed to kernel to tell it about th... | [
"liancancai001@163.com"
] | liancancai001@163.com |
d9dfeb06db170c968f2578d34493180f5170801e | 3942c2db0c51b2e65df953e2dc850ec0756b7b86 | /playground/playground engine/include/Shader.h | 5a7be8546a07ce9332bc672c1560bb737b20c6d9 | [] | no_license | FantasyAlpha/Phase-1 | 2aaa37f26f81499f5e7cd9eeb3235f6f07164bac | ffb0def75d862cfed006074519c475b3d1e9c153 | refs/heads/master | 2020-04-15T15:53:51.572819 | 2016-05-13T16:36:00 | 2016-05-13T16:36:00 | 48,345,006 | 2 | 2 | null | 2016-05-13T16:36:01 | 2015-12-21T01:53:58 | C | UTF-8 | C | false | false | 2,104 | h | /*=======================================================================================================================
NOTE(kai): This file can:
1) creates and compile vertex and fragment shader
2) Activate the shader for drawing
======================================================================================... | [
"ayaomar.ieee@gmail.com"
] | ayaomar.ieee@gmail.com |
29a70f802fd1e480cda47237c2f28034e706393c | df506359b32af23d70a37ee792260098f00bfb68 | /esps/ESPS/New Folder/old/src/misc/copysd.c | e511ca39851e95e3a9293172872135f87cbb5d12 | [
"BSD-3-Clause",
"LicenseRef-scancode-newlib-historical",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | RobBullen/AudioMorphing | df02f1e396ee8231b59b6c15606c32cbbd2cb765 | fb38b9c110341a1b3cbb4927e454c76b47de2c97 | refs/heads/master | 2021-01-16T19:50:46.986868 | 2012-05-14T23:15:00 | 2012-05-14T23:15:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,849 | c | /*
This material contains proprietary software of Entropic Processing, Inc.
Any reproduction, distribution, or publication without the the prior
written permission of Entropic Processing, Inc. is strictly prohibited.
Any public distribution of copies of this work authorized in writing by
Entropic Proc... | [
"bullen.rob@gmail.com"
] | bullen.rob@gmail.com |
4e14f8e44ee6e7961800fc9dff323385a3790e1a | 663f36cfff3bfaf9ad64bba430e648b0dadc0f99 | /dependencies/agar/core/dir.h | ec74bb7c959d3a0d2830bda90f3b8caaf8c8ee8d | [
"Bitstream-Vera",
"BSD-2-Clause",
"BSD-3-Clause",
"LicenseRef-scancode-free-unknown",
"Apache-2.0"
] | permissive | LiberatorUSA/GUCEF | b579a530ac40478e8d92d8c1688dce71634ec004 | 2f24399949bc2b2eb20b3f445100dd3e141fe6d5 | refs/heads/master | 2023-09-03T18:05:25.190918 | 2023-09-02T17:23:59 | 2023-09-02T17:23:59 | 24,012,676 | 9 | 15 | Apache-2.0 | 2021-07-04T04:53:42 | 2014-09-14T03:30:46 | C++ | UTF-8 | C | false | false | 477 | h | /* Public domain */
#ifndef _AGAR_CORE_DIR_H_
#define _AGAR_CORE_DIR_H_
#include <agar/core/begin.h>
typedef struct ag_dir {
char **ents;
int nents;
} AG_Dir;
__BEGIN_DECLS
int AG_MkDir(const char *);
int AG_RmDir(const char *);
int AG_ChDir(const char *);
AG_Dir *AG_OpenDir(const char *);
void AG_Cl... | [
"dinand@vanvelzen.us"
] | dinand@vanvelzen.us |
6d8823f3f56613d946f752c1cf014e1c646167dc | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/base/mvdm/wow16/ddeml/verddeml.h | a768b579c7d3b91d53fdbd683b5ea89b0e1a143a | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C | false | false | 50 | h | WORD rup = 1;
WORD rmm = 0;
WORD rmj = 1;
| [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
e49f8d4e7a17297abc27cc3b0ae4695e4675489e | 35c04ea32351dc95bc18d46e5c70dda9c1e08668 | /Examples/KDS/FRDM-K64F120M/FRDM-K64F_Adafruit_SSD1351/Sources/Application.c | 7ba88b4048f01d9ac605cdcbba3acf2cc4976833 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | ErichStyger/mcuoneclipse | 0f8e7a2056a26ed79d9d4a0afd64777ff0b2b2fe | 04ad311b11860ae5f8285316010961a87fa06d0c | refs/heads/master | 2023-08-28T22:54:08.501719 | 2023-08-25T15:11:44 | 2023-08-25T15:11:44 | 7,446,094 | 620 | 1,191 | NOASSERTION | 2020-10-16T03:13:28 | 2013-01-04T19:38:12 | Batchfile | UTF-8 | C | false | false | 4,439 | c | /*
* Application.c
*
* Created on: 20.03.2017
* Author: Erich Styger Local
*/
#if 1
#include "Application.h"
#include "LED1.h"
#include "LED2.h"
#include "LED3.h"
#include "WAIT1.h"
#include "LCD1.h"
#include "GDisp1.h"
#include "Helv14.h"
#include "FDisp1.h"
#include "uncannyEyes.h"
#include <math.h>
stati... | [
"erich.styger@hslu.ch"
] | erich.styger@hslu.ch |
5de5c19d80eaf0f29f10a727ac64ee920d82c8e9 | 476a517cbbdb08387619de1bbd5ee154bc605948 | /inc/rpc_types.h | 7866beb0fb8357fc4cb692013af55d553c9bc65c | [] | no_license | shellqiqi/freelite | 06aef3bc1048c542baed9c37fe2c9c0c727cab8b | 73ef17bf90ad2ab167472114ee7fc61c08b8faaa | refs/heads/master | 2020-05-03T08:58:40.755040 | 2019-04-25T08:08:05 | 2019-04-25T08:08:05 | 178,541,327 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,638 | h | #ifndef RPC_TYPES_H
#define RPC_TYPES_H
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
/* Request messages */
struct join_req_msg
{
char input_str[16];
int eth_port;
int ib_port;
};
struct alloc_remote_mem_req_msg
{
unsigned int node_id;
unsigned int size;
bool atomic_flag;
... | [
"shellqiqi@outlook.com"
] | shellqiqi@outlook.com |
b0f4e3bac6fb7344098136cc4ff2928225950076 | e7563231a250bb34585a0180b6b6cf8bab2a6bb4 | /vulkan/vulkan_beta.h | 4cdabd2737893eaa5f37cf44d3571076f3e01839 | [] | no_license | tomazos/spockgen | 2f4f31553b15892fa72c276c7204d956c599f169 | 53bf694d35c32e7bb9004a1e394528718f51a37f | refs/heads/master | 2021-06-24T01:29:17.882955 | 2020-12-05T16:44:26 | 2020-12-05T16:44:26 | 163,642,917 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 19,253 | h | #ifndef VULKAN_BETA_H_
#define VULKAN_BETA_H_ 1
/*
** Copyright (c) 2015-2020 The Khronos Group Inc.
**
** SPDX-License-Identifier: Apache-2.0
*/
/*
** This header is generated from the Khronos Vulkan XML API Registry.
**
*/
#ifdef __cplusplus
extern "C" {
#endif
#define VK_KHR_portability_subset 1
#define VK_KHR_P... | [
"andrewtomazos@gmail.com"
] | andrewtomazos@gmail.com |
b0989457b95a303331c4a26f740adf95095a3449 | 5cbbb9690069a95886242a6eaeec133ca742262c | /3.1.c | cd1c96bc8a0e4d2c9fdf2dbe2909ad345fb7c05e | [] | no_license | PetchSiravit/codercamp | 04dfba984aad2e91dbf8e24b017481fc19c5641e | d8f44fba3889d894276cce3523efc4fcd72f1ddc | refs/heads/main | 2023-09-04T12:37:21.567475 | 2021-10-07T09:58:44 | 2021-10-07T09:58:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 514 | c | #include <stdio.h>
#include <cs50.h>
int main(void)
{
int table[2][4];
for (int j = 0; j <= 2; j++)
{
//get ID
int id = get_int("Enter ID: ");
table[j][0] = id;
//get score
for (int i = 1; i <= 3; i++)
{
int score = get_int("Score: ");
... | [
"noreply@github.com"
] | PetchSiravit.noreply@github.com |
0f1c7ffc918d7681e69b43b8844fdaeab1728bcd | 25cf3d11041ab7fea854dfa630751aa77809e8da | /volum13sphr.c | 709442b88c66c98c9e89ef8735784891004a25de | [] | no_license | srj1357/srjque5 | 08c8ef50eed9d365680ea4e842b5c271ad1aeb70 | 03aa04e794e81b342a362f5b518207a29e69a187 | refs/heads/main | 2023-08-18T06:00:52.074296 | 2021-10-21T18:03:53 | 2021-10-21T18:03:53 | 419,826,742 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 293 | c | #include <stdio.h>
int main()
{
printf("FINDING THE AREA OF SPHARE USING C;\n");
float r;
printf("enter the radius of sphere whose volumn u want to find=");
scanf("%f",&r);
printf("the volumn of sphare %f",(float)4/3*(float)22/7*r*r*r);
return 0;
}
| [
"noreply@github.com"
] | srj1357.noreply@github.com |
becad742ba3ac0c8fc6ff46c307cb727bddc38fc | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/f2a8b0b8-a75d-4903-b6d0-c6b4398ec095.c | 9ea961459e6d4539453e0031bbf6b5fecc26b25a | [] | 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 | 561 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=0;
int j=12;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i%j;
l = i+j;
k = k-k*k;
//variables
//random
/* START VULNERABILITY */
int a;
int b[46];
int c[70];
a = 0;
while (a < strlen(b)) {
... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
374edbd6e7c9de020dc710c60597bf78c6a4ae97 | 782f5fa0683e6491a49dcda48295104e2205be6d | /Practica 2/pmv-OpenMP-reduction.c | 6017a2903c8d4612cca6c814980007a7c6af8175 | [] | no_license | elenacm/Arquitectura_de_Computadores | 8b70c0cb16ee5dcff60ad0d8760b92ff68380df1 | 99ff299935c1c615807e3e97f66d4e8e374bf81e | refs/heads/master | 2021-09-09T19:54:00.065441 | 2018-03-19T10:21:45 | 2018-03-19T10:21:45 | 114,229,956 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,921 | c | #include <stdio.h>
#include <stdlib.h>
#include <omp.h>
#include <time.h>
#define VECTOR_GLOBAL
//#define VECTOR_DYNAMIC
#ifdef VECTOR_GLOBAL
#define MAX 100
int v[MAX], matriz[MAX][MAX];
#endif
int main(int argc, char const *argv[])
{
// comprobamos que los argumentos son correctos
if (argc < 2) {
... | [
"eleniita2197@gmail.com"
] | eleniita2197@gmail.com |
00fab354a5c4637d6809ef6f438018c178005343 | d4781adf233b660948f3db035a9657b0f26abc5f | /db_apps/ethoamd/tms_1agsetupendpoints.c | df92daf47cc9076476a173c9d586ea168817e70c | [] | no_license | xiongqi1/web | bce81960c2a74bde186210bd376692945666e809 | 6d4b20e15f09a4fdb71c2f1dc6a4844473f38a6f | refs/heads/main | 2023-09-05T06:43:43.971707 | 2021-11-26T09:44:40 | 2021-11-26T09:44:40 | 432,123,705 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,797 | c | /*
*
* Copyright 1997-2010 NComm, Inc. All rights reserved.
*
*
* *** Important Notice ***
* --- V6.72 ---
* This notice may not be removed from this file.
*
* The version 6.72 ETHERNET OAM software contained in this file may only be
* used
* within a... | [
"xiongqi@git.com"
] | xiongqi@git.com |
0df99469646c8227cb1e055400f36a8c878ff2de | 601533bee6393d550fdf60e66599d9c69fb31a68 | /src/network/cxgb4/t4_chip_type.h | d341e5f5b271f7e3b54b99c86ac9742b8c75ae49 | [] | no_license | truenas/chelsiouwire | 7043978301e0e28be6c39ac39bbf483af370464f | 4739d295d543fc8164c96356d4cb1ed63e091a90 | refs/heads/master | 2023-08-21T16:54:22.911750 | 2022-07-13T18:26:48 | 2022-07-13T18:26:48 | 383,461,654 | 1 | 0 | null | 2022-07-13T18:29:13 | 2021-07-06T12:30:41 | C | UTF-8 | C | false | false | 3,492 | h | /*
* This file is part of the Chelsio T4/T5/T6 Ethernet driver.
*
* Copyright (C) 2003-2021 Chelsio Communications. All rights reserved.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICU... | [
"waqarahmedjoyia@live.com"
] | waqarahmedjoyia@live.com |
427f29e3edd52374950fe43d1697204e2d290cfe | fccf012569409d840b1cec7073c4c7fe9b8328db | /libusb/libusb/os/poll_posix.h | bc0239caa2144a69df31c72759cbe3ae8b9b7038 | [
"LGPL-2.1-only",
"MIT"
] | permissive | jbenden/Pololu-Maestro | 97e89bbc30bc1a0f736604043a1d0b0a7f1e63c0 | b89c4f677414c4463a0b5fac0c64fed1b5fa3700 | refs/heads/main | 2023-01-06T09:48:13.256314 | 2020-10-27T00:18:58 | 2020-10-27T00:18:58 | 307,025,930 | 0 | 0 | MIT | 2020-10-25T04:46:02 | 2020-10-25T04:46:01 | null | UTF-8 | C | false | false | 281 | h | #ifndef LIBUSB_POLL_POSIX_H
#define LIBUSB_POLL_POSIX_H
#define usbi_write write
#define usbi_read read
#define usbi_close close
#define usbi_poll poll
int usbi_pipe(int pipefd[2]);
#define usbi_inc_fds_ref(x, y)
#define usbi_dec_fds_ref(x, y)
#endif /* LIBUSB_POLL_POSIX_H */
| [
"morganleborgne@gmail.com"
] | morganleborgne@gmail.com |
3f92bdb226e96c9d443e3676595b2f608845cfd9 | bb9eac2a989d5018668701a1345c0eb6ce9dda32 | /fmt_fmu/rtos/components/external/jpeg/jdsample.c | 092fe04cebe31c2932eb081bbf02333e5a27eb0d | [
"LicenseRef-scancode-warranty-disclaimer",
"IJG",
"LicenseRef-scancode-free-unknown",
"Apache-2.0"
] | permissive | yangjion/FMT_Firmware | 0a1b1c460d53bdf385730c79b0b9ed8d3fe7d6f3 | 2152c9c4680bad98bd1c2da9f3b9739c2fd24bb2 | refs/heads/master | 2022-12-26T22:07:10.251958 | 2020-09-30T09:05:32 | 2020-09-30T09:05:32 | 292,263,051 | 0 | 1 | Apache-2.0 | 2020-09-02T11:23:41 | 2020-09-02T11:23:40 | null | UTF-8 | C | false | false | 12,118 | c | /*
* jdsample.c
*
* Copyright (C) 1991-1996, Thomas G. Lane.
* Modified 2002-2008 by Guido Vollbeding.
* This file is part of the Independent JPEG Group's software.
* For conditions of distribution and use, see the accompanying README file.
*
* This file contains upsampling routines.
*
* Upsampling input data... | [
"zoujiachi666@163.com"
] | zoujiachi666@163.com |
35b7666abc737096d190e21b6f64ec25870ecbd3 | 66d773d6ca92e27d446686d5d7fb17c8a343f1eb | /public/freetds-1.00.23/src/replacements/gettimeofday.c | de69b0d41c6a857ae858c8642fa2fac8ee5e92b2 | [
"Unlicense",
"LGPL-2.0-only",
"LGPL-2.0-or-later",
"GPL-2.0-only",
"FSFAP"
] | permissive | thepriyakadam/hrms | 5af415fd0ac3debc672f45b794df6db04d921940 | af7f44ac10691850487e2c412a666694680a0672 | refs/heads/master | 2021-10-21T17:09:31.736267 | 2019-03-02T07:07:22 | 2019-03-02T07:07:22 | 171,734,186 | 0 | 0 | Unlicense | 2019-03-02T07:07:23 | 2019-02-20T19:16:25 | HTML | UTF-8 | C | false | false | 2,052 | c | /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
* Copyright (C) 2003, 2004 James K. Lowden, based on original work by Brian Bruns
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the ... | [
"design@indibasolutions.com"
] | design@indibasolutions.com |
d20a237fe1dbce6ba456f668aed549355cf87a39 | 711b0e04b2173b901cec679cd3fd60c6166076bf | /do_syscall.h | 10f54a63a139073670ad6be6c77805beff008e08 | [] | no_license | hecg119/c-runtime | 697486b6476a5ab7b1a30ce3be3aaec1312d226e | e9ee580c75e58c6c6aa7f04ef1b72713cb011e7b | refs/heads/master | 2023-06-22T13:02:11.925812 | 2021-07-18T05:26:35 | 2021-07-18T05:26:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,627 | h | #ifndef __SYSCALL_H__
#define __SYSCALL_H__
#ifdef __cplusplus
extern "C" {
#endif
long int do_syscall(long int sys_no, ...);
#ifdef __cplusplus
}
#endif
#ifdef __i386__
__asm__ (
".section .text\n"
".type do_syscall, @function\n"
"do_syscall:\n"
" push %ebp\n"
" push %edi\n"
" push %... | [
"490021209@qq.com"
] | 490021209@qq.com |
3e1b67fc51f1925661e5ce654087dff6df39c9ef | 3358304429ff367634b47d07f8331e4e21e3e036 | /2ano/MATERIAS/Estrutura de Dados/MORE-PROJECTS/Abstração/main.c | 2d60843695170a9dfe3ec46f77cf665c2efac472 | [] | no_license | VictorHugoCostaOsses/School-Projects | 9d7229a2d24d7c198b26c4605a0aedd56564f209 | 1e5d789f624e7e06314f128ff2e5df7206798677 | refs/heads/master | 2022-11-29T22:36:55.003760 | 2020-08-16T00:50:16 | 2020-08-16T02:22:41 | 287,841,097 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 713 | c | #include <stdio.h>
#include <stdlib.h>
#include "ponto.h"
#include<locale.h>
struct ponto
{
float x;
float y;
};
typedef struct ponto Ponto;
int main()
{
setlocale(LC_ALL,"");
float z,k,resultado;
float vetor[3];
Ponto *p[2];
scanf("%f",&z);
scanf("%f",&k);
p[0] = cria(z,k);
scanf("%f",&z);
scan... | [
"victor.costa.osses@gmail.com"
] | victor.costa.osses@gmail.com |
3e01c398ae5b127d0373303374cd5f673d655a57 | 344194ce205daa1bfdf8f106c2058f18372f6e00 | /0x09-static_libraries/1-memcpy.c | 37add327e8158c9d7b2ede226695a6f52b59df94 | [] | no_license | adeoluawotunbo/alx-low_level_programming | 5dbd40be54445df0cac46e4b848d991c661b8e06 | 8dd268aa93c04f525f009b87df17fef82b84ac5c | refs/heads/main | 2023-07-17T03:38:42.924716 | 2021-08-26T16:45:21 | 2021-08-26T16:45:21 | 377,745,097 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 485 | c | #include "holberton.h"
/**
* _memcpy - copies n bytes from memory
* area src to memory area dest
* @dest: memory copied into
* @src: memory copied from
* @n: number of bytes to be copied from @src
*
* Description: The memcpy() function copies
* n bytes from memory area src to memory area dest.
* Return: retu... | [
"adeoluawotunbo@gmail.com"
] | adeoluawotunbo@gmail.com |
07cd02a2d83526d2396bb3ef9c4c3f696100aa57 | e07e3f41c9774c9684c4700a9772712bf6ac3533 | /app/Temp/StagingArea/Data/il2cppOutput/AssemblyU2DCSharp_TMPro_KerningPair1577753922MethodDeclarations.h | 3a0a0d6571cfa75481c6c3aec962bdfda256ec2b | [] | no_license | gdesmarais-gsn/inprocess-mobile-skill-client | 0171a0d4aaed13dbbc9cca248aec646ec5020025 | 2499d8ab5149a306001995064852353c33208fc3 | refs/heads/master | 2020-12-03T09:22:52.530033 | 2017-06-27T22:08:38 | 2017-06-27T22:08:38 | 95,603,544 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 535 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include <assert.h>
#include <exception>
// TMPro.KerningPair
struct KerningPair_t1577753922;
#include "codegen/il2cpp-codegen.h"
// System.Void TMPro.KerningPair::.ctor(System.Int3... | [
"gdesmarais@gsngames.com"
] | gdesmarais@gsngames.com |
46ba93033b8275f0aafb4ab94f2329af474f7054 | aa2200dde0a7efd74fe250dede70dd23d37363a6 | /build/esp-idf/mbedtls/mbedtls/library/ssl_debug_helpers_generated.h | bb833968077418d1aea92ad9aea9db19c194be2e | [] | permissive | bteck2005/hello-world | 17c95f0341af2f90839512d3eb717c33b29fd98f | 5ac3a3e4a667c6456999e0f95021382233fa10d4 | refs/heads/main | 2022-06-18T03:48:41.058723 | 2022-05-30T07:41:49 | 2022-05-30T07:41:49 | 168,853,454 | 0 | 0 | Unlicense | 2019-02-02T18:33:17 | 2019-02-02T16:46:31 | null | UTF-8 | C | false | false | 92 | h | /home/bteck2005/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.h | [
"bteck2005@gmail.com"
] | bteck2005@gmail.com |
885219141950106743c864aa8e82bfe6fa3511d2 | e5926ce06de449fa0c3d8f110497c61a3b5d730d | /stm32/libraries/OLED_I2C/src/hardware/avr/HW_AVR_defines.h | 92a4afa547115bf6381c56d23726dee5a2c070e1 | [
"MIT"
] | permissive | Gruenstreifen-eV/BSFrance-stm32 | b4a976d532f25d64b3efdfad04ad8557a3535ed3 | e8d3aa12c1fcc1f2c90fa8a3c9f6c39851d013d6 | refs/heads/master | 2020-04-20T13:19:50.997106 | 2019-02-18T19:26:12 | 2019-02-18T19:26:12 | 168,866,125 | 0 | 1 | MIT | 2019-02-02T18:55:05 | 2019-02-02T18:55:05 | null | UTF-8 | C | false | false | 440 | h | // *** Hardwarespecific defines ***
#define __cbi(reg, bitmask) *reg &= ~bitmask
#define __cbi2(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
#define __sbi(reg, bitmask) *reg |= bitmask
#define pulseClock __cbi(P_SCK, B_SCK); asm ("nop"); __sbi(P_SCK, B_SCK)
#define fontbyte(x) pgm_read_byte(&cfont.font[x])
#define bitmap... | [
"alerts@bsfrance.fr"
] | alerts@bsfrance.fr |
efc562ba1a3e5eeb1aa8fc5a016fab9ce0ba759e | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/gpu/drm/msm/disp/mdp5/extr_mdp5.xml.h_REG_MDP5_LM_CURSOR_START_XY.c | f0ba078eff091895754d8605ae1ac81c3abb3e95 | [] | 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 | 588 | 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 |
e2e7aa2c8d1ddf216196b808bf6aa9c0df6c4727 | c2a54fe1a77d86c170619b64fb82e40ffc8bddea | /xv6_patched1/user/test1.c | 402f6b7a918641508d062ad01be6843ddd14aeed | [] | no_license | SirBbarnes/xv6Project | 6ee7b673ab80acc5bcc17c521445571a5dedcc38 | cfc0407f908c17f332d4e16ac90ab3cdd9caa9f4 | refs/heads/master | 2022-12-24T09:42:41.820564 | 2020-10-10T02:38:38 | 2020-10-10T02:38:38 | 302,797,260 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 456 | c | #include "types.h"
#include "stat.h"
#include "user.h"
#include "pstat.h"
int main(int argc, char *argv[])
{
int ppid = getpid();
int pid = fork();
if(pid < 0)
{
printf(1, "TEST FAILED\n: ");
exit();
}
else if(pid == 0)
{
uint * nullp = (uint*)0;
printf(1, "null dereference: ");
printf(1, "%x %x\n", n... | [
"sergio@Sergios-MacBook-Pro.local"
] | sergio@Sergios-MacBook-Pro.local |
c5dbc86b56f268de0b9ff023abe8636d39b21c46 | 71614f18e901cb58d9144f77a23058ee08a3ecfe | /source/ak_file.c | d78526fe56cda74bdd4d24204424a5454e04e173 | [
"MIT"
] | permissive | habdurazzoqov/libakrypt-0.x | b3df58cfec6c8df1f9d5300f7e8f3041266fc4a9 | 11333d23f894b9129080b1f869b2361fc97dd036 | refs/heads/master | 2023-08-18T21:50:46.436172 | 2021-09-12T13:10:40 | 2021-09-12T13:10:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 20,610 | c | /* ----------------------------------------------------------------------------------------------- */
/* Copyright (c) 2004 - 2020 by Axel Kenzo, axelkenzo@mail.ru */
/* */
/* Файл ak_fi... | [
"axelkenzo@mail.ru"
] | axelkenzo@mail.ru |
d670b9697d9b086f92faba9206873668814e7f11 | d3c9f16c18d4473d9946344cc3fca36a289d78c7 | /31.c | ad308e5010849bc1188533a2f4e842742326870f | [] | no_license | ceccs17d15/cs231 | 969b733e40b9f084270b8b861e2e37f06485cd4c | d419c0f41d7ff65e8b86430fac184366bd2ef1d0 | refs/heads/master | 2020-04-02T16:35:32.477300 | 2018-11-30T00:31:52 | 2018-11-30T00:31:52 | 154,619,501 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,310 | c | Athira Suresh
Roll no:15
#include<stdio.h>
#include<stdlib.h>
#define que struct queue
#define pf printf
#define sf scanf
struct queue{
int info;
struct queue *link;
};
que *front=NULL,*rear=NULL;
int count=0;
void push(int n)
{
que *newnode;
newnode=(struct queue*)malloc(sizeof(struct queue));
newnod... | [
"noreply@github.com"
] | ceccs17d15.noreply@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.