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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3f76ff5e00fdaa6eb1cae80a40f8e3f2ec6c4886 | cbbed04a0cc6bd92474ee85c3759ba723a638b9f | /algorithms/c/RangeSumQueryImmutable/RangeSumQueryImmutable1.c | b4b05c3ccb96d2a2e378b04f00d1a1736f82f1a7 | [] | no_license | xsu11/leetcode | 716dff2debfa136928b80d0db08739f6a070c837 | 291802c2c3fb45519327175f47158cf7b508e5ad | refs/heads/master | 2020-07-18T02:38:42.146148 | 2016-11-02T22:15:26 | 2016-11-02T22:15:26 | 67,458,938 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 1,509 | c | /*
* RangeSumQueryImmutable1.c
*
* Created on: Sep 28, 2016
* Author: xinsu
*
* Naive solution
*/
/*
Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive.
Example:
Given nums = [-2, 0, 3, -5, 2, -1]
sumRange(0, 2) -> 1
sumRange(2, 5) -> -1
sumRange(0... | [
"xsu11@hawk.iit.edu"
] | xsu11@hawk.iit.edu |
3a6726ed005c44255d286a55c30a67c7e2e6b29d | 10dbe948dd9fed8b103eb6dfcdb2ff4e85345db4 | /Smalllogique.X/sharp.h | 00a06b8318894c468951a404fbd431e6171c852f | [] | no_license | dthomasULB/Bulbot_smallRobot | 034de0d4f8d95ff5ab937b079595df66aa5a1440 | bd9eb8b3d822984e23d1fa68b53901c8b359f482 | refs/heads/master | 2021-01-10T12:23:32.029187 | 2016-03-01T15:13:28 | 2016-03-01T15:13:28 | 49,964,518 | 0 | 0 | null | null | null | null | ISO-8859-1 | C | false | false | 1,374 | h | /**
* @file sharp.h
* @author bULBot 2011-2012
* @brief Fichier header pour la gestion des capteurs sharps.
*/
#ifndef DEF_SHARP_H
#define DEF_SHARP_H
#include "../Can/CanTypes.h"
#define INPUT_SHARP_AVANT 1 //<! Entrée analogique pour le sharp avant
#define SEUIL_COLLISION_AVANT 300//279 ... | [
"denis.thomas.gpt@gmail.com"
] | denis.thomas.gpt@gmail.com |
e1bf602639537958b9204ab694f512a2bb21bf89 | f41f4bc68739f48cb0f7195b1e9d137272f9a2e4 | /src/draw_line.c | 6d91456f1a9745ac2cb928b98a1b1ba2027ec218 | [] | no_license | jcazako/fdf | cf82c73ad81c2f9540b1e8ab175ac3e5569f46ed | ad31f7e97b685b4d96d0865bed02feed11c3ae20 | refs/heads/master | 2021-06-01T09:10:37.849971 | 2016-05-30T10:19:13 | 2016-05-30T10:19:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,239 | c | #include "fdf.h"
static double put_line(t_win *win, t_screen a, t_screen b)
{
t_pos i;
double d;
double e;
double aux;
d = (a.y - b.y) / (a.x - b.x);
e = a.y - d * a.x;
i.x = (a.x < b.x) ? a.x : b.x;
aux = d * i.x + e;
while (i.x < ((a.x < b.x) ? b.x : a.x))
{
i.y = d * i.x + e;
if (aux < i.y)
whil... | [
"jeancharles.cazako@gmail.com"
] | jeancharles.cazako@gmail.com |
3fa6793b21124df564a5361b0754febd075af635 | 17967f05cf854a4bc627717e546876161659a204 | /mmnp/libsrc/rtmp.c | 8e071341421ec27466401046e2ec7b76daaf2574 | [] | no_license | firs003/refer | 9db365414ab6e110c815786674c1577e7d32b2b0 | 5d0b2d81e81681530c5a6e75fb508673c94d92c3 | refs/heads/master | 2022-07-05T00:04:37.735079 | 2020-05-11T06:59:02 | 2020-05-11T06:59:02 | 262,963,175 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,354 | c | #include "vis_mmnp.h"
#include "rtmp.h"
#include "RtmpSendApi.h"
//#define MULTI_RTMP_SENDER
#ifdef MULTI_RTMP_SENDER
static unsigned int sock_count = 0; //ls 2013-0-17 for test
static sem_t sem_rtmp;
#endif
typedef struct send_thread_env {
volatile int *quit_flag_ptr;
RingBuffer *pbuffer;
int thread_index; //... | [
"firs003@qq.com"
] | firs003@qq.com |
5d6a52bbb1cd48740f2b668d9fd24918816169e0 | 49b829cc6dd8bb50a9e7c8b095afaa2166acc7de | /src/main.c | 01fcb93be5301fed418bfc34a0d9e7372485cab8 | [] | no_license | DrakeJak/Spell-Checker | 9db10253fee932045b6dd5227de1b206dbb478b9 | ed68f480c683a0b0d1006e2e363033a8e9dc1273 | refs/heads/master | 2020-03-07T16:00:05.563760 | 2018-03-31T20:57:54 | 2018-03-31T20:57:54 | 127,570,183 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,713 | c | #include "FileReader.h"
#include "HashTableAPI.h"
#include "MyFunctions.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
int main (int argc, char **argv){
char userInput[100];
int index = 0;
char ** myList = malloc (sizeof(char*) * 200);
for (int i = 0; i < 200; i++)
{
m... | [
"noreply@github.com"
] | DrakeJak.noreply@github.com |
7af1462654aa28676e254f17770e9ddb8c7c9b35 | 53c5343523d7dcf6aa92e750eddbf66117fbc5c8 | /main.c | b85f20029993a43d92353fb37f883bffb2a7a825 | [] | no_license | GoodieDawson/CS460_A1 | 8715944c758e906524e231478e22b8446b675399 | e24d76db1fa94144daa930646ee0bf4f22527e52 | refs/heads/master | 2020-08-21T23:06:11.769956 | 2019-10-24T20:34:58 | 2019-10-24T20:34:58 | 216,268,099 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,076 | c | /*
* CS 460 A1
* Embedded Key Value Store Client
* Starter Code
*
* By Wilson Qin <wilsonqin@seas.harvard.edu>
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "data_types.h"
#include "storage_engine.h"
#include "btree.h"
bpTree root;
/*
*... | [
"noreply@github.com"
] | GoodieDawson.noreply@github.com |
34ac5869a141dfb56be642a8c2cf9bb6542f3992 | 41d6193de7f38713dbe5089e8da7ce96afa16ac5 | /kernel/kernel/i386at/gpl/linux/net/eepro.c | 2aa2bd1444ebef85e664721a5f7f4387a9f2aea0 | [
"BSD-3-Clause"
] | permissive | neozeed/xMach | 2be67bfdcb329b8952d0a384bfc76e6ce025a3e9 | 2283fb558392a5412f06007bb1d55fb5c670bc0a | refs/heads/main | 2023-07-25T07:38:59.593412 | 2022-11-12T23:10:10 | 2022-11-12T23:10:10 | 374,872,648 | 11 | 5 | BSD-3-Clause | 2021-07-14T02:58:10 | 2021-06-08T03:46:04 | C | UTF-8 | C | false | false | 33,323 | c | /* eepro.c: Intel EtherExpress Pro/10 device driver for Linux. */
/*
Written 1994, 1995 by Bao C. Ha.
Copyright (C) 1994, 1995 by Bao C. Ha.
This software may be used and distributed
according to the terms of the GNU Public License,
incorporated herein by reference.
The author may be reached at bao@saigon.asyn... | [
"neozeed@users.noreply.github.com"
] | neozeed@users.noreply.github.com |
6a51754f2b20e237f4eeda1b74000bca4747a5b0 | 16a0d426b4ad4a037db12ec4bfb1d78f328c9204 | /include/bsp_driver_sd.h | cb8515b650a01c9f775135aa2ed1433a5b4c4f26 | [] | no_license | barty78/fg-cm-100 | 6bcf71ce1447e2977f87c32462a220ec4044b34e | 8445ce0d4b10370f57930837094aded4aa176008 | refs/heads/master | 2021-09-05T04:56:28.082791 | 2018-01-21T11:33:38 | 2018-01-21T11:33:38 | 111,064,413 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,894 | h | /**
******************************************************************************
* @file bsp_driver_sd.h (based on stm322xg_eval_sd.h)
* @brief This file contains the common defines and functions prototypes for
* the bsp_driver_sd.c driver.
*****************************************************... | [
"peter@masters-young.com.au"
] | peter@masters-young.com.au |
0c3c729620f6094315b18ad53ffc9b4b40dd3e45 | 747a3a2bd470199dc0a0d0e50dc11d081fb5e7eb | /src/interface.c | c393517bd971dad5ff291f826a5b7337aa3dd33a | [] | no_license | SamirPS/Projet-C-ENSIIE-1A | 6bb1d540a610d717bde3a0f81837e017633bce7d | 77b0ff38d84ee2f30b8a7efa7801fb42c1c30c68 | refs/heads/master | 2022-11-09T01:12:59.059475 | 2020-06-25T16:04:47 | 2020-06-25T16:04:47 | 274,958,392 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,614 | c | #include "../headers/interface.h"
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <time.h>
/* @requires : aucun
@assign: aucun
@ensure : affiche un message de nouveau tour*/
void new_tour(Plateau* P) {
P->n_tour++;
printf("Le tour %d commence \n",P->n_tour);
}
int debutval()... | [
"noreply@github.com"
] | SamirPS.noreply@github.com |
55e75c1bd35a87dcb0bbf97970c966b899414edc | 42be477c7af0d1b28ecfa352d8aff064c41f37d9 | /inc/builtin.h | cf8b1bd633e5bc6bebc26ac77b40d75556e5aa26 | [] | no_license | baylesa-dev/T-SH | 820491be5ce713a64da60e885056685eab6d6c27 | ab6703e3717276d468cc3a3ca29da79ef1291d69 | refs/heads/master | 2020-05-20T14:03:40.002637 | 2019-09-17T16:59:04 | 2019-09-17T16:59:04 | 185,614,317 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,281 | h | /*
** EPITECH PROJECT, 2017
** T-SH
** File description:
** builtin
*/
#ifndef BUILTIN_H
# define BUILTIN_H
/*
** setenv.c
*/
int my_setenv(char **tab, char ***env, char *cmd);
/*
** unsetenv.c
*/
int my_unsetenv(char **tab, char ***env, char *cmd);
/*
** cd.c
*/
int cd(char **tab, char ***env, char *cmd);
/*
... | [
"adrien.bayles@epitech.eu"
] | adrien.bayles@epitech.eu |
edf1e3ee299b93e8b575de7d19f2e9680b78153a | 0e9a3c849447f16aadc3464026277c7955aa90ea | /gw/dlr_mem.c | a4b65e5d94433862da782f29c4a1bc83dfed698d | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | SchoolOfFreelancing/SMS-Gateway | 912668add4a8f9d225e813d05ea8f20576321946 | 899e9ffcf24ab49dea733031e9a8a243c71f203a | refs/heads/master | 2022-12-07T12:29:04.368124 | 2020-08-29T15:58:12 | 2020-08-29T15:58:12 | 291,302,035 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,189 | c | /* ====================================================================
* The Kannel Software License, Version 1.0
*
* Copyright (c) 2001-2005 Kannel Group
* Copyright (c) 1998-2001 WapIT Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification... | [
"you@example.com"
] | you@example.com |
08566d33ab440cbb83621fe77d95dbd107be81e1 | 61b578793076cbfa2d24fa6d7d5b307c0c61c052 | /69.c | ccb26eb18e6e373545d8bb7da26a13f4864fc764 | [] | no_license | DHIVYABHARATIM/c-program | 76c25eea937053146f4534e16e96cfda03e36536 | 3cd5fbcaed7b428847122e5d3a42e42aed5f255e | refs/heads/master | 2021-01-21T08:55:15.521605 | 2018-03-19T11:21:00 | 2018-03-19T11:21:00 | 101,961,936 | 0 | 2 | null | null | null | null | UTF-8 | C | false | false | 168 | c | #include "stdio.h"
int main(void)
{
int i,n,a,b;
printf("enter the numbers");
scanf("%d%d",&a,&b);
n=a-b;
if((n%2)==0)
printf("even");
else
printf("odd");
}
| [
"noreply@github.com"
] | DHIVYABHARATIM.noreply@github.com |
d69e075a50c04961da96010cad6608a8488034a5 | b6539d5839361993f23820ab6e0fe737724e126f | /c/combinationMemo.c | 6e539bd65b8f0343c7390b8a67756585bc69e0d0 | [] | no_license | saceandro/kisojikken | 090a607ef623761725f4c9bc56489a5b364b9218 | 738d68d46def72e062900653a913537c935b8b2f | refs/heads/master | 2020-04-23T10:03:59.724089 | 2019-02-17T06:58:22 | 2019-02-17T06:58:22 | 171,091,702 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 489 | c | #include <stdio.h>
#include <string.h>
int combination(int n, int r, int **c) {
/* nCrを返す */
if (c[n][r]>=0){
return c[n][r];
}
else if (n < r) {
return c[n][r]=0;
}
else if (r==0) {
return c[n][r]=1;
}
else {
return c[n][r] = combination(n-1, r, c) + combination(n-1, r-1, c);
}
}
... | [
"y.tienjin.kon@gmail.com"
] | y.tienjin.kon@gmail.com |
35ee9d9dccfc050f37316b6fe40b90f7bfcd925c | ce03a90fd0bb509d4f2097a8fbd90e175161d657 | /examples/locktree_test1.c | 4009e60f923dffac19642e24458457c45f7de95a | [
"Apache-2.0"
] | permissive | f0rki/LLTap | 642a61e0aedf8d4d4b68fa74a640ca83447d8b3e | 7fcd88960faf362b41024f6450c61b468e9a2a92 | refs/heads/master | 2021-01-21T14:01:16.912626 | 2016-05-25T14:21:03 | 2016-05-25T14:21:03 | 44,829,397 | 5 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,489 | c | #include <stdio.h>
#include <pthread.h>
#include <err.h>
#include <string.h>
pthread_mutex_t lock_1 = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t lock_2 = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t lock_3 = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t lock_4 = PTHREAD_MUTEX_INITIALIZER;
void* thread_one(void* arg)
{
(... | [
"michael@michaelrodler.at"
] | michael@michaelrodler.at |
7ad2303ca3c0de9b39f164dc620c3316162e46ac | 8e3335f1fb15fcf0892c0053b82d2bcd1b125b3c | /kern/include/proc.h | 8cc71e655f4fdc346d334f025d087b2d3b9aa800 | [] | no_license | wenwee/os161-2 | 19cd5e47374a3e476db726716ab5e4cbaca462f6 | 1347d9e5628fe02e23d7308ae08f2faa2882741d | refs/heads/master | 2022-05-01T22:50:25.758243 | 2015-04-08T21:28:14 | 2015-04-08T21:28:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,437 | h | /*
* Copyright (c) 2013
* The President and Fellows of Harvard College.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this lis... | [
"nfrasser@gmail.com"
] | nfrasser@gmail.com |
21e3b3446d5aba7a59bf0f174736ce9588163542 | b0a9450d90d734b71db05ae27004b1261f034be5 | /include/mb_types.h | 59117edf43c5a4fc22cd669e4962d9f6d292a421 | [
"BSD-3-Clause"
] | permissive | aguai/MadButterfly | 7adfb25909b255c7d8b75908e883671ab2e637e4 | 005c4b56aac7a40c0c4c53bb80ee38b07665e266 | refs/heads/master | 2021-01-17T17:03:37.959510 | 2011-09-30T14:07:28 | 2011-09-30T14:07:28 | 62,825,644 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 13,953 | h | // -*- indent-tabs-mode: t; tab-width: 8; c-basic-offset: 4; -*-
// vim: sw=4:ts=8:sts=4
#ifndef __MB_TYPES_H_
#define __MB_TYPES_H_
#include "mb_graph_engine.h"
#include "mb_tools.h"
#include "mb_observer.h"
#include "mb_prop.h"
typedef struct _shape shape_t;
typedef struct _geo geo_t;
typedef struct _shnode shnode_... | [
"thinker@codemud.net"
] | thinker@codemud.net |
e8953e7f694e171887e165c65265f3af058dc683 | 79dc8ca1965b931575f1c0caca750b6bd82537a4 | /devicemodel/include/macros.h | af219ae5e932cde209257c1cac2c1284ce39a9b7 | [
"BSD-3-Clause"
] | permissive | JasonChenCJ/acrn-hypervisor | ffee926f0265f0106478250decdaac3e84fb2ddd | 30549a59c74e09e3cad8fc0bd9df7eebe21d4ad8 | refs/heads/master | 2021-04-06T05:24:24.768962 | 2018-05-15T01:32:29 | 2018-05-16T07:09:48 | 124,468,562 | 1 | 0 | BSD-3-Clause | 2021-02-04T10:33:03 | 2018-03-09T01:14:52 | C | UTF-8 | C | false | false | 1,730 | h | /*
* Copyright (C) 2018 Intel Corporation. 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... | [
"jinxiax.li@intel.com"
] | jinxiax.li@intel.com |
f7b13cc5a4e7b63000bfa0af209f79c1c283c8ad | 1fa5af5a5d2a0162d157c2f6dcc31fe2a37db1cc | /AFP/Lab14/Exe5/main.c | 90f4d6241a97619432552631a80c78880c5aa86a | [] | no_license | IAmAlmeida/CTeSP | 997eb4e7797a4ce36cc40890d65fddce928f2b27 | 2e714cbdf3602174ec0805a7d6ae8ae82c5438c9 | refs/heads/master | 2020-03-30T19:34:27.171531 | 2019-04-15T07:54:52 | 2019-04-15T07:54:52 | 151,548,982 | 0 | 0 | null | null | null | null | ISO-8859-3 | C | false | false | 2,067 | c | #include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <time.h>
#include <string.h>
typedef struct{
int dia;
char mes[20];
int ano;
}tipoData;
void defaultdate(tipoData *date){
time_t timer;
struct tm* tm_info;
char day[3];
char month[3];
char year[5];
... | [
"joao.paulo.almeidaaa@gmail.com"
] | joao.paulo.almeidaaa@gmail.com |
3068f3cbdb6ae200ff0d2c082a360411ff99476d | 3103b772444594ff8ab5a1394bd1934dbc7691f3 | /De2115/4/DE2_115_demonstrations/DE2_115_NIOS_HOST_MOUSE_VGA/software/DE2_115_NIOS_HOST_MOUSE_VGA/VGA.c | dfa692ca71a9e750da78d7727fa1d4baeed87b62 | [] | no_license | dumpinfo/DE2115backup | 01eb4e2d06d9d3407142192db0ca344b356c61b5 | 15c9048919437a7e401628ad862554e13140c18b | refs/heads/master | 2023-02-12T00:28:56.815984 | 2020-12-22T14:41:02 | 2020-12-22T14:41:02 | 321,918,290 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,132 | c | #include <io.h>
#include "system.h"
#include "VGA.h"
//-------------------------------------------------------------------------
void Set_Cursor_XY(unsigned int X,unsigned int Y)
{
Vga_Cursor_X(VPG_BASE,X);
Vga_Cursor_Y(VPG_BASE,Y);
}
//--------------------------------------------------------------... | [
"ubuntu@localhost.localdomain"
] | ubuntu@localhost.localdomain |
d5ffe5d7c1fbc3118e3d4b717b3489cf35bc0836 | 25b438e8ec3089d2beb8ebe0558af75bd5cea79b | /test/3.c | 1ec1388116a7988430d1a6605fd73b4670776fdc | [
"MIT"
] | permissive | RGSS3/swi | 4f46dd16328f6b47bfa416f3af83522dc16b0686 | 02cebb4b4b3c4f70a42359d33ffde32ed8557aeb | refs/heads/main | 2023-08-12T03:16:06.544865 | 2021-09-28T11:54:30 | 2021-09-28T11:54:30 | 408,212,920 | 1 | 0 | MIT | 2021-09-20T11:22:03 | 2021-09-19T19:02:45 | C | UTF-8 | C | false | false | 475 | c | #define SWI_STATEFUL_MODEL
#include <6.0g/swi.h>
int main(void) {
window();
var b = button();
setText("Hello");
setPos(10, 10);
setSize(100, 30);
modifyStyle(BS_FLAT, 0);
ATWINDOW();
setVisible(true);
while (1) {
if (poll()) {
AT(b);
if (event(WM_LBUTTONUP)) {... | [
"noreply@github.com"
] | RGSS3.noreply@github.com |
8a5c55995b1d785e226b3da8a48bb35898c68f9f | 61314f889041b72d98e233a28e4e79c06167d1b4 | /target/qnx6/usr/include/rpc/rpcb_clnt.h | 35bb47572564af1838eb52528654e09fd6d8dbf6 | [] | no_license | CyberSys/qnx650 | 37867847dacf9331926736e97009bc0af83850bd | a10a0e62384d0a6a24cc3879dee3b7bacf6d4601 | refs/heads/master | 2021-05-27T03:46:05.775523 | 2014-05-02T00:15:16 | 2014-05-02T00:15:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,304 | h | /* $NetBSD: rpcb_clnt.h,v 1.1 2000/06/02 22:57:56 fvdl Exp $ */
/*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
* unrestricted use provided that this legend is included on all tape
* media and as a part of the software program in whole or part. Users
* may copy or modify Sun RPC with... | [
"acklinr@us.panasonic.com"
] | acklinr@us.panasonic.com |
6c565e0f9e89789b82eba28da5ab46c6d59a024c | 3869850d9c616ead27a39452cc42493c5f05ed69 | /QUIZGAME/test_results/test.c | e374eee083cf41bf098363ed7260cf96cd6d064d | [] | no_license | kreL-Lo/Quiz-Game- | 7b4c39495fb0a4d87692c14184395765188df886 | 01cd33fb42d98c6906e882fa89a3ecb7948cee00 | refs/heads/master | 2020-11-29T00:03:12.136567 | 2020-01-27T23:34:44 | 2020-01-27T23:34:44 | 229,956,814 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 998 | c | #include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
pthread_t tid[2];
int counter;
pthread_mutex_t lock;
void* trythis(void* arg)
{
pthread_mutex_lock(&lock);
unsigned long i = 0;
counter += 1;
printf("\n Job %d has started\n", counter);... | [
"noreply@github.com"
] | kreL-Lo.noreply@github.com |
a811eb54b58d452617d442319718a289af1a3842 | 97aad5992c4d9b130c404376f1f832d417edfaf8 | /42sh/include/shell.h | 662af718b24d0d5b9540be2d2e0bdc1571cde02e | [] | no_license | akrayan/Others-C-Projects | e66798d20bd39bf66a2e87ffcb5af5ad57297997 | 5e6b02c63372ad4189846f0a0aef57583a242f4f | refs/heads/master | 2022-12-07T14:37:34.252000 | 2020-08-30T08:16:41 | 2020-08-30T08:16:41 | 289,825,792 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,112 | h | /*
** shell.h for shell.c in /home/Rayan/Shell/PSU_2015_minishell2
**
** Made by AKKACHE Kaci
** Login <Rayan@epitech.net>
**
** Started on Tue Mar 29 16:44:05 2016 AKKACHE Kaci
** Last update Fri Jun 3 02:37:58 2016 AKKACHE Kaci
*/
#ifndef MYSH_H
# define MYSH_H
#include <fcntl.h>
#include <sys/stat.h>
#includ... | [
"raihane.akkache@gmail.com"
] | raihane.akkache@gmail.com |
73a475d1c1b2f02c332dfeb7ad3dbed52aa8e6a9 | 29f7bddf40bd457668743709b9b9f762e8a04e79 | /src/rm_mem.c | c8c71b7cd9db1f060d6214c7cd1723ca162dca52 | [
"MIT"
] | permissive | JayTee42/rm_tristripper_snapshot | 2561a2bc8720e8c3fed76018d814b692a5c3539f | fd7f313e0b6c5ed06cf7b6ccc38d4d7dc2a365ce | refs/heads/main | 2023-03-16T05:12:48.969764 | 2022-06-27T11:40:48 | 2022-06-27T11:40:48 | 507,884,457 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,143 | c | #include "rm_mem.h"
//Emit non-inline versions:
extern rm_void* rm_malloc(rm_size size);
extern rm_void* rm_malloc_zero(rm_size size);
extern rm_void* rm_realloc(rm_void* ptr, rm_size size);
extern rm_void rm_free(const rm_void* ptr);
extern rm_void* rm_malloc_aligned(rm_size alignment, rm_size size);
extern rm_void* ... | [
"endoplasmaticreticulum@yahoo.de"
] | endoplasmaticreticulum@yahoo.de |
818f9467031d47aeed2bb2c85aaa52d6c541e36b | a33aac97878b2cb15677be26e308cbc46e2862d2 | /program_data/PKU_raw/99/1027.c | dcb14b03dc89739cedbb67ae9bcc5039ca73527d | [] | no_license | GabeOchieng/ggnn.tensorflow | f5d7d0bca52258336fc12c9de6ae38223f28f786 | 7c62c0e8427bea6c8bec2cebf157b6f1ea70a213 | refs/heads/master | 2022-05-30T11:17:42.278048 | 2020-05-02T11:33:31 | 2020-05-02T11:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 487 | c | int main(){
int n,a=0,b=0,c=0,d=0;
int i;
int sz[10000];
scanf("%d",&n);
for(i=0;i<=(n-1);i++){
scanf("%d", &(sz[i]));
if(sz[i]>0&&sz[i]<=18){
a++;
}else if(sz[i]>=19&&sz[i]<=35){
b++;
}else if(sz[i]>=36&&sz[i]<=60){
c++;
}else if(sz[i]>=61){
d++;
}
}
printf("1-18: ... | [
"bdqnghi@gmail.com"
] | bdqnghi@gmail.com |
1043242b51b4f8fd02be44d09baa2c9304f26ad0 | b44fd22ac3096e61e7c853a8d0401052577eca6a | /user/h파일/manu_sel.h | b278cbb89ecdddd1801150810243737aa801d11a | [] | no_license | sowmoo/Capston_4_1 | 413b006a96a5d56b29546e4a846bb7bb73576945 | e0f81ae4ae86fd69838f381ef16935dcbc8ad176 | refs/heads/master | 2022-11-16T02:31:01.521043 | 2020-07-12T06:18:00 | 2020-07-12T06:18:00 | 276,689,967 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 49 | h | #ifndef MANU_SEL_H
#define MANU_SEL_H
#endif | [
"noreply@github.com"
] | sowmoo.noreply@github.com |
5ee2848a3bb892dd8596372ead7041ca0b94a98f | 962d13134dd48d6261e56828c8f69bfb575ff3e7 | /kernel/include/arm_acle.h | b094e37fce9bde69b3b601595ecf3ac9b9fa2f60 | [] | no_license | saltstar/smartnix | a61295a49450087a7640c76774f15fb38f07e950 | 8cb77436763db43f70dbe49ea035f5f7e29becac | refs/heads/master | 2021-01-17T21:23:58.604835 | 2019-12-27T01:21:38 | 2019-12-27T01:21:38 | 35,830,495 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,254 | h |
#pragma once
// ARM C Language Extensions header for Zircon.
// This header includes the toolchain-provided ACLE implementation and fills in the missing pieces.
// Include arm_acle.h from the toolchain headers.
#include_next <arm_acle.h>
#include <stdint.h>
#ifndef __clang__
// GCC's arm_acle.h is missing impleme... | [
"376305680@qq.com"
] | 376305680@qq.com |
fea94f5bf675bc8f809e172dac2446c25712f962 | e2b2324415458e44163ddaf542f910d3254966b7 | /HACKERRANK/Problem Solving/Algorithms/Strings/Strong Password/strongPassword.c | 931a9f00786e1741e0c1156ad9e2831de15e915e | [
"MIT"
] | permissive | PaulSayantan/problem-solving | 77948a4e167c27805bea7ff613253a95248d27ba | f6960edeb151838f00c9444d8232b99b48769784 | refs/heads/master | 2023-07-19T07:18:12.684817 | 2021-08-24T08:39:47 | 2021-08-24T08:39:47 | 288,135,021 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,775 | c | /**
* @file strongPassword.c
* @author Sayantan Paul
* @brief Strong Password
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
int checkPassword(char*);
int main() {
char* password = (char*)malloc(100*sizeof(char));
printf("Enter your password: ");
scanf("%[^\n]s", ... | [
"noreply@github.com"
] | PaulSayantan.noreply@github.com |
c978b86cddbd579ad17f41d901f65afbcd47f81a | b5b7368105fb6a744b7c7722f7558938a648b068 | /project/src/include/cli/command/command_exit.h | ccccbb978a664ff8d00b3ecf864b33afbf6763a9 | [
"MIT"
] | permissive | SimoneNascivera/domus | 1bbfe64b06ffaa3b164e64c593fe32bfc1c6fe41 | d2a62723d68b166e7184d13bd283d0e903d2a800 | refs/heads/master | 2023-03-15T18:51:08.261700 | 2020-02-09T15:55:29 | 2020-02-09T15:55:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 174 | h | #ifndef _COMMAND_EXIT_H
#define _COMMAND_EXIT_H
#include "command.h"
/**
* Definition of exit Command
* @return The exit Command
*/
Command *command_exit(void);
#endif
| [
"simone.nascivera@gmail.com"
] | simone.nascivera@gmail.com |
3a8e626436e091af2deeb7a204c26d88f20a01a7 | 7cdc917a42fc3caadd65b7bc13c1dd860e891b3f | /x.categories/deitel/C Programming/CH06/FIG6_11.C | 60f84cf646c74c348b87deb7e6e4aa44b4c6fd0c | [] | no_license | pstivers3/clearn | 13cf672ee513d00a74cee684a289032a523006ea | 12f75e57826b16001835edec1ca18634924e1f9e | refs/heads/master | 2020-05-23T03:01:12.825150 | 2020-04-13T23:21:04 | 2020-04-13T23:21:04 | 48,219,425 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,155 | c | /* Static arrays are initialized to zero */
#include <stdio.h>
void staticArrayInit(void);
void automaticArrayInit(void);
main()
{
printf("First call to each function:\n");
staticArrayInit();
automaticArrayInit();
printf("\n\nSecond call to each function:\n");
staticArrayInit();
automat... | [
"pstivers3@comcast.net"
] | pstivers3@comcast.net |
7bd732edcc23d038b15144541d6d5c6607825e11 | 2633378c9f48e204453a0855c613dcf257a4b9ad | /ejer/ex04/main.c | d94daaf95ce7fc90fd8ce8d5f3873c173154f759 | [] | no_license | sbarriol14/42codschool_piscine | 512cc6075cc19fd236363ebe90d5b9e0e4cc196b | 35b75db7f29881e80ca16c925940d47f7805d2a6 | refs/heads/main | 2023-02-01T07:51:55.393043 | 2020-12-17T17:41:07 | 2020-12-17T17:41:07 | 315,319,614 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 502 | c |
#include <stdio.h>
int ft_fibonacci(int index);
int main (void)
{
int f1;
int f2;
int f3;
int f4;
int f5;
f1 = ft_fibonacci(2);
f2 = ft_fibonacci(4);
f3 = ft_fibonacci(10);
f4 = ft_fibonacci(12);
f5 = ft_fibonacci(20);
printf("%d", f1);
printf("%c", '\n');
p... | [
"noreply@github.com"
] | sbarriol14.noreply@github.com |
7d0cad29e8adbb9ebc90d046912f136cc6969fce | ef15a526b0261fe04fa536a1f5b110ad61242ac7 | /jtag/core.h | cd34255423a4c7abefb4d03b84dfe99e79db123a | [] | no_license | ktemkin-archive/uniloader | 775913557f370b5fcfc011711c2fa4dc2f14aaea | de2de7cd65b33f7628efb19455d26716a9694730 | refs/heads/master | 2021-05-26T18:25:48.893053 | 2012-12-28T07:36:05 | 2012-12-28T07:36:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,554 | h | #pragma once
//FIXME
#include <avr/io.h>
#include "../unilab.h"
#if \
!defined(JTAG_TMS_PORT) || \
!defined(JTAG_TMS_DDR) || \
!defined(JTAG_TMS_PIN) || \
\
!defined(JTAG_TMS_PORT) || \
!defined(JTAG_TCK_DDR) || \
!defined(JTAG_TCK_PIN) || \
\
!defined(JTAG_TDI_PORT) || \
!... | [
"ktemkin@binghamton.edu"
] | ktemkin@binghamton.edu |
4f730ce45e4569fe5221cd2773cce752fc70f091 | 74e5a88a9ba512ed754c48a4898838a9f5eee0e0 | /nut/arch/avr32/dev/ih_irq3.c | af6394d4a7f9a9f9f3b3531819cda5cc0da92669 | [
"BSD-2-Clause"
] | permissive | dferbas/NutOs | b4644f5993b8d41a3b103da832a392d3318f369a | 89f0a16bcef4cba16307d35e1de9eeb12aa7f947 | refs/heads/master | 2021-09-06T10:19:27.116899 | 2018-02-05T13:12:05 | 2018-02-05T13:12:05 | 120,303,768 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 6,380 | c | /*!
* Copyright (C) 2001-2010 by egnite Software GmbH
*
* 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
... | [
"shindy@e18dba81-b7be-514b-945f-45d19d31607d"
] | shindy@e18dba81-b7be-514b-945f-45d19d31607d |
4bcd6d651837f7bcd57e990292d1ffba3f98d1d6 | d7626890b0e1fdebd5e19369038e80619528820d | /src/consensus/consensus.h | 5ad636845eb017561d1c547864abccdc9bb55bdd | [
"MIT"
] | permissive | pyujin78/Fashionking-WonCash | 8549bbca518e29ae58bd8392ee0ac7a50323ddae | b3abba221d239cbdb116e9c8518862010cc43c12 | refs/heads/main | 2023-06-12T10:58:02.979778 | 2021-07-04T12:32:07 | 2021-07-04T12:32:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 965 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_CONSENSUS_CONSENSUS_H
#define BITCOIN_CONSENSUS_CONSENSUS_H
/** ... | [
"hamxa6667@gmail.com"
] | hamxa6667@gmail.com |
efe031679d48e22a221646668840e45c370a3aa5 | d3d01dc057112afbce7e0ecb841a91eb7d002b6d | /ft_printf/ft_flag_s.c | 6f26c318dab367f0f74dd111f5ab0de70e0c7617 | [] | no_license | moel-mal/cursus_42 | ca06b16aed2a3b2ff6020688d1d5f57d3e8bfdd2 | 67ba24da97058da3646cb372235debaac5abd612 | refs/heads/master | 2020-12-21T13:59:11.272618 | 2020-01-27T10:26:25 | 2020-01-27T10:26:25 | 236,451,876 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,105 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_flag_s.c :+: :+: :+: ... | [
"moel-mal@e1r11p7.1337.ma"
] | moel-mal@e1r11p7.1337.ma |
448432df886c7aa67bb9dec956b811f055e285d5 | 976f5e0b583c3f3a87a142187b9a2b2a5ae9cf6f | /source/linux/drivers/net/wireless/realtek/rtlwifi/rtl8723be/extr_phy.c_rtl8723be_phy_set_bw_mode_callback.c | 027e9b05cd182850b1e627668700f80308e4f812 | [] | 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 | 3,780 | 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 |
9023e108339e56c39288f9c09fd10b9874b77274 | 93bcbdf06b96b437d03faa0313de19bda831bea0 | /utils/utils/thread.h | a902c24762cbcc0f0e6341f08068f8e7062085c2 | [] | no_license | Tick42/rmds-bridge | e149d73f5b89e3c3f6bb68613e533862c8ae2405 | 20e1329de90d31592a71f1cbe3d647eb454eb868 | refs/heads/master | 2021-06-05T13:14:02.423873 | 2018-08-23T11:24:32 | 2018-08-23T11:24:32 | 32,326,374 | 8 | 3 | null | 2021-01-13T18:08:23 | 2015-03-16T13:23:59 | C++ | UTF-8 | C | false | false | 1,178 | h | /*
* Utils: Tick42 Middleware Utilities
* Copyright (C) 2013 Tick42 Ltd.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any lat... | [
"tom.doust@tick42.com"
] | tom.doust@tick42.com |
0dd9651f19afc3df685ee305306d99d8fc7aa79a | 076635dc887253cd9a8e37e85ee520193027800e | /stable.112/TLG/AUTHOR.C | 1a2230b67d3d8db2cb30e478807cef28e7dacbca | [] | no_license | mikemull/Chiron | 16077767e5c85ca5ef712e51c289b640d507c67d | a7347bf784ea24ef4b1edc2edf342b3b8a5a411f | refs/heads/master | 2020-05-30T08:22:36.875002 | 2014-03-13T21:19:52 | 2014-03-13T21:19:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,877 | c | /*===================================================================
* $Header: C:\MIKE\TLG\CHIRON\RCS\author.c 2.0 1993/09/15 20:36:09 mwm Exp mwm $
*
* Functions related to the currently selected author.
* $Log: author.c $
* Revision 2.0 1993/09/15 20:36:09 mwm
* Start of new version.
*
* Revis... | [
"mike.mull@brightscope.com"
] | mike.mull@brightscope.com |
48d833112c20d2bbab01e94266157f9488255b86 | be80211406635345d1f2935808503b2ec179eee7 | /lab2/basic_calculator/lista.c | d3afe87fcd53ac00a0e5e7ef22aaccef9e929e10 | [] | no_license | notzilly/c | 441d071ebe2c9d12ec0ed7ecb698d1fa7b8176db | 06a46da4ea18fb93fc80cd87a687ed0b53546498 | refs/heads/master | 2021-06-14T11:55:11.173536 | 2017-03-21T22:59:22 | 2017-03-21T22:59:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 3,604 | c | #include "lista.h"
#include <stdio.h>
#include <stdlib.h>
struct elemento{
dado_t dado;
elemento* prox;
};
lista lista_cria(){
lista l = NULL;
return l;
}
void lista_destroi(lista *l){
if(lista_vazia(l)){
*l = NULL;
return;
}
else{
elemento* atual = *l;
elemen... | [
"lhmedeiros0@gmail.com"
] | lhmedeiros0@gmail.com |
a9531650396d829f3c03ac553f5f77c1b2903254 | 4adc6367b09ae83e993a4bd5bcdb99dbc1801dc8 | /num2cn.h | 12804865d1dc6ec86bf8cc05adf90149d5653693 | [] | no_license | OakMolecule/cnsoftbei-weather | c0b56301e9db586a47995bea10c9fe76169e9f16 | 0c1ef10f04792d4f92f3a4b04e7e5a13e498bb14 | refs/heads/master | 2021-01-23T16:13:16.068361 | 2017-06-30T13:10:03 | 2017-06-30T13:10:03 | 93,287,112 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 80 | h | #ifndef __NUM2CN_H
#define __NUM2CN_H
void num2cn(int num, char *buf);
#endif
| [
"15028690629@139.com"
] | 15028690629@139.com |
fc9b1eaf098942333af37e4fd1b2f4d84b91f898 | 53cec7c4ca4bef433c649c46d7cf208db4fb55e4 | /d/shushan/westway4.c | cb11119bd90bd1ac4941b1eba374d6f399f7dd6e | [] | 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 | 468 | c | //【蜀山派】mhxy-yushu 2001/2
inherit ROOM;
#include <ansi.h>
void create ()
{
set ("short","西小路");
set ("long", @LONG
这是天师洞西厢的一条小路, 小路是由青石铺成地,打扫的
极为干净,走在上面感到非常平坦。小路的西面是丹房。
LONG);
set("exits", ([
"north" : __DIR__"houlang",
"south" : __DIR__"westway3",
"west" : __DIR__"danfang"... | [
"liming.xie@gmail.com"
] | liming.xie@gmail.com |
8e652ec9e8d4fcf6dc6a805f0f036302257d6675 | 112ca3b1e4117f134d99adf1e4b334c9b2832774 | /un7zip/src/main/cpp/src/Ppmd7.h | 610539a047fbfb75b9f64ad93d3663e7c6cd73d7 | [
"Apache-2.0"
] | permissive | hzy3774/AndroidUn7zip | 7401090fecf03b2af098320b5ada6ac9e5def346 | 97040407cd12bc150033720f351fa813bcdcbd19 | refs/heads/master | 2022-07-28T03:34:03.260642 | 2021-12-07T02:57:13 | 2021-12-07T02:57:13 | 23,015,365 | 369 | 119 | Apache-2.0 | 2019-12-02T03:47:12 | 2014-08-16T10:01:20 | C | UTF-8 | C | false | false | 3,827 | h | /* Ppmd7.h -- PPMdH compression codec
2018-07-04 : Igor Pavlov : Public domain
This code is based on PPMd var.H (2001): Dmitry Shkarin : Public domain */
/* This code supports virtual RangeDecoder and includes the implementation
of RangeCoder from 7z, instead of RangeCoder from original PPMd var.H.
If you need the com... | [
"hzy3774@gmail.com"
] | hzy3774@gmail.com |
3ee646d5b865e5405a37240ebcb05bcc4a1f073e | 54079ee80c7c9921745440938e76503e7b4d9929 | /c11/ex05/ft_atoi.c | b8531ecbc95c56032e0b069a6e53ddc47212e5f6 | [] | no_license | endcerro/Pisicne_09_2019 | 92b14c288dcbad00951fa29d4ccf34b83498ba34 | f7b455bfc5c2cd01bb09728e3be8827bba1e4626 | refs/heads/master | 2020-09-10T16:42:44.813540 | 2019-11-14T18:47:46 | 2019-11-14T18:47:46 | 221,764,315 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,718 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: ... | [
"edal--ce@e2r2p2.42.fr"
] | edal--ce@e2r2p2.42.fr |
cc593f3d00417059d2d4dda2ecfc18f34e00643e | a33aac97878b2cb15677be26e308cbc46e2862d2 | /program_data/PKU_raw/39/1685.c | a8d7c4420ce9cc7fdc90791d705c288766c17d16 | [] | no_license | GabeOchieng/ggnn.tensorflow | f5d7d0bca52258336fc12c9de6ae38223f28f786 | 7c62c0e8427bea6c8bec2cebf157b6f1ea70a213 | refs/heads/master | 2022-05-30T11:17:42.278048 | 2020-05-02T11:33:31 | 2020-05-02T11:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,592 | c | struct student
{
char name[20];
int score1;
int score2;
char lead;
char west;
int paper;
int sch;
struct student *next;
};
void main()
{
struct student *p0,*p1,*p2,*head;
int n,k,i;
scanf("%d",&n);
p1=(struct student *)malloc(sizeof(struct student));
p1->sch=0;
scanf("%s %d %d %c %c %d",... | [
"bdqnghi@gmail.com"
] | bdqnghi@gmail.com |
40d1d46a056a29e71372a2502f02b7189cf2f04e | 33377c4d113cf9ea1338077af6bd645f3c5796b3 | /extensions/android/ringlibsdl/project/jni/flac-1.2.1/src/plugin_xmms/locale_hack.h | d04b1b2e90e6ddee6d725e86a721eb8e3163812f | [
"LicenseRef-scancode-free-unknown",
"MIT",
"BSD-3-Clause",
"GPL-2.0-only",
"LGPL-2.1-only",
"GFDL-1.2-only",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"GPL-2.0-or-later",
"GFDL-1.1-or-later",
"LicenseRef-scancode-other-permissive"
] | permissive | ring-lang/ring | 56f55111f751b0274d4f588871f806a8c2734dea | 2081d2efb41c9dacd49b7a6944b9ca332638ba64 | refs/heads/master | 2023-09-04T16:54:44.309452 | 2023-09-03T10:28:57 | 2023-09-03T10:28:57 | 54,633,811 | 1,360 | 555 | MIT | 2023-08-03T01:48:24 | 2016-03-24T10:29:27 | C | UTF-8 | C | false | false | 1,684 | h | /* plugin_common - Routines common to several plugins
* Copyright (C) 2002,2003,2004,2006,2007 Josh Coalson
*
* Based on:
* locale.h - 2000/05/05 13:10 Jerome Couderc
* EasyTAG - Tag editor for MP3 and OGG files
* Copyright (C) 1999-2001 H蛆ard Kv虱en <havardk@xmms.org>
*
* This program is free software; you ... | [
"msfclipper@yahoo.com"
] | msfclipper@yahoo.com |
db273575103c3c7c00f252b77d71f3d9f1fcf54d | 88bd05f86db09d6fdfd451748c23e0462574dc41 | /add two times.c | b0afa06542c55991678e2be6b2ed8ab30c2a1a5d | [] | no_license | athafkhanam7/codes | 53fd10d464214f87b3d37744485429815273ab1a | 0fbf3296288ae2c71eb7703f16dcf075c8f00049 | refs/heads/main | 2023-07-01T02:49:08.806683 | 2021-08-11T07:38:21 | 2021-08-11T07:38:21 | 390,266,667 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 584 | c | #include<stdio.h>
int main()
{
int t1h, t1m, t1s, t2h, t2m, t2s, resH, resM, resS;
t1h = 12;
t1m = 50;
t1s = 40;
t2h = 6;
t2m = 30;
t2s = 50;
resM = resH = 0;
resS = t1s + t2s;
if(resS >= 60)
{
resS -= 60;
resM = 1;
}
resM+=t1m+t2m;... | [
"noreply@github.com"
] | athafkhanam7.noreply@github.com |
c245e9398f89a60926c7f33624be4e97f761e5b4 | eec4b31ffbc70b71858a2e4cc886a984ba16161e | /stm32_spi_halfduplex - Copy/Libraries/STM32F10x_StdPeriph_Driver/inc/printf.h | 625cbe5026076b1e513ca54f08d56152c005a467 | [] | no_license | tuannusi/24c02_stm32 | e0552ba1e8f21f117a45af29b7d4dbd6da6f00b3 | d39f5a7e587c27c5e9a87a5e38ca008867dbdd26 | refs/heads/master | 2020-05-18T19:40:55.195242 | 2019-05-02T16:22:23 | 2019-05-02T16:22:23 | 184,613,759 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 362 | h | //uart_printf
#ifdef __GNUC__
/* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printf
set to 'Yes') calls __io_putchar() */
#define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
#else
#define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
#include "main.h"
#include <stdio.h>
#incl... | [
"tuannusi@gmail.com"
] | tuannusi@gmail.com |
3a5715745a6355565eddf85b14c7e2aeefc44d5a | 849eaf25d8e4c78cba4fe17288caaaa046ff14c2 | /SystemyOperacyjne/lista4/zadanie1/main.c | 848298dc198bcc9a4319a9b7fcaca0fc7497690b | [] | no_license | deeckowy/II-UWr | 296cad6ffe6cfc95434c9b8407f68fa750398434 | f68d03b4fe0044cdb15d1c641a8b0e4e8e968013 | refs/heads/main | 2023-03-19T19:35:49.121398 | 2021-03-18T16:18:25 | 2021-03-18T16:18:25 | 334,436,564 | 5 | 0 | null | null | null | null | UTF-8 | C | false | false | 306 | c | #include <stdio.h>
#include <dirent.h>
#include <assert.h>
int main(int argc, char*argv[])
{
DIR* dp = opendir("..");
assert(dp != NULL);
struct dirent* d;
while ((d = readdir(dp)) != NULL)
printf("%lu %s\n", (unsigned long) d->d_ino,d->d_name);
closedir(dp);
return 0;
} | [
"noreply@github.com"
] | deeckowy.noreply@github.com |
0968dbaa87cf6aa254576a7361ac785e9b78b8e6 | bbf1657250d4ad4544d0db9d6940cac662c08e02 | /blockchain/v0.1/test/block_hash-main.c | 45f53bc615e7cbb97b9d4d1c8357cce48849873e | [
"MIT"
] | permissive | alzheimeer/holbertonschool-blockchain | 8ec29e362d1937a70128674318cef8bff2b0878b | e09e3e677ac0919524631d561d847b630fef277d | refs/heads/main | 2023-07-13T15:50:16.828343 | 2021-08-25T18:20:52 | 2021-08-25T18:20:52 | 388,581,864 | 1 | 2 | null | null | null | null | UTF-8 | C | false | false | 873 | c | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "blockchain.h"
void _blockchain_print(blockchain_t const *blockchain);
void _blockchain_destroy(blockchain_t *blockchain);
/**
* main - Entry point
*
* Return: EXIT_SUCCESS or EXIT_FAILURE
*/
int main(void)
{
blockchain_t *blockchain;
block_t ... | [
"fogniebla@hotmail.com"
] | fogniebla@hotmail.com |
ddfe5304cb814208408b2687756d94e5ed5b427e | 94e8344ee420ae4d2eb1643e95973845f341a3d2 | /spidermonkey_1.6_mutants/mutant102628_jsparse.c | 7bbdb5790f3bdf4868e79c0f8707d42e19545b0f | [] | no_license | agroce/compilermutants | 94f1e9ac5b43e1f8e5c2fdc17fa627d434e082f3 | dc2f572c9bfe1eb7a38999aaf61d5e0a2bc98991 | refs/heads/master | 2022-02-26T21:19:35.873618 | 2019-09-24T15:30:14 | 2019-09-24T15:30:14 | 207,345,370 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 158,184 | c | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.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 in compliance with
* the Licen... | [
"agroce@gmail.com"
] | agroce@gmail.com |
8c5a67af78f224502de3e3eb6f18b3c3a257652a | 776037fb4a91183c821784af9ab117048a326423 | /d/qianjin/npc/dachick.c | f52e4f3d222303982598989b3e7c336dcbd680b4 | [] | no_license | zhoudaohong007/fengyun2005 | 74d41428339e8e57854e26de27cdcfbbf7ac1e34 | 8b52994bbd8db9de7bcb7f15012261a0f9554977 | refs/heads/main | 2023-06-10T13:17:50.285139 | 2021-06-27T12:46:10 | 2021-06-27T12:46:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 705 | c | #include <ansi.h>
inherit NPC;
void create()
{
set_name("卜亚男", ({ "bu yanan","bu" }) );
set("title", HIM "酒仙"NOR);
set("gender", "女性" );
set("age", 22);
set("per", 30);
set("long", @LONG
卜亚男从来没醉过,多少英雄好汉都倒在她的石榴裙下.
LONG
);
set("combat_exp", 13000);
set("attitude", "friendly");
setup();
carry_object(__DIR__"ob... | [
"i@oiuv.cn"
] | i@oiuv.cn |
fba20b084910d3005e3ed914d565a93e5de4e0bb | e007acc04d4e14d8f9f4a7347ed16242eb312515 | /1800.c | ac5cfc6878a91b44b308705d838c35db5a5afce5 | [] | no_license | VSTagliavini/URI_C | 6479272fb9d4bb4f166d28173c51dfe323b1b5de | 1114da2d9f8c4d5510aa0b0304f6bbfa6d691c08 | refs/heads/main | 2023-02-24T15:53:38.024466 | 2021-01-27T12:05:19 | 2021-01-27T12:05:19 | 333,403,182 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 416 | c | #include <stdio.h>
int main () {
int Q[1000], E[1000], nq, ne, aux=0, aux2, est;
for (scanf("%d %d", &nq, &ne); aux<ne; aux++) scanf("%d", &E[aux]);
for (aux=0;aux<nq; aux++) {
est=1;
scanf("%d", &Q[aux]);
for (aux2=0; aux2<ne; aux2++) if (Q[aux]==E[aux2]) est=0;
fo... | [
"noreply@github.com"
] | VSTagliavini.noreply@github.com |
5df864a7b05549fe2f4fa2d9f24d41051139bda2 | bc7158885ba7785ce0354a4757ad6023f116b60e | /cmake_test/Inc/hci_tl_interface.h | 998b884b75d5232f4e462b99fc7fe779019b39f8 | [] | no_license | totocmc/stm32-cmake | a0d56b7dab22ca725dfb9d77da8e1098a7166989 | cedafdad8c140c7d86f778d26ee289e6f034bd47 | refs/heads/master | 2020-08-11T17:36:21.236061 | 2019-10-12T10:27:13 | 2019-10-12T10:27:13 | 214,602,918 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,655 | h | /**
******************************************************************************
* @file : hci_tl_interface.h
* @brief : This file contains all the functions prototypes for the STM32
* BlueNRG-MS HCI Transport Layer interface
************************************************************************... | [
"totocmc@gmail.com"
] | totocmc@gmail.com |
8348b0305161cfa16a32f9c3a4bf989bb89acc8e | c87c36977652b6c76a3042a5df63f977461f68f5 | /Software/SDK1_1/platform/drivers/src/i2c/fsl_i2c_master_driver.c | 59b82d33738eadf6e68afc01464a1fdac20e809e | [
"MIT"
] | permissive | colossus212/Quadcopter_Will | a21abe97a881b66216e4764135c1786c191f29cf | fd0b0d3db28ff4d2b93b3c481a0378bd0302ae57 | refs/heads/master | 2021-01-15T22:57:42.411637 | 2015-03-20T10:01:03 | 2015-03-20T10:01:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 27,613 | c | /*
* Copyright (c) 2013 - 2014, Freescale Semiconductor, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice, th... | [
"wenjian.cn@gmail.com"
] | wenjian.cn@gmail.com |
a3af0dc203495585d3cd76cff0b8b5cba9ef68cf | fafc1461c0f2c1ac66e2f030985b39a1839510fd | /Sample/Sample_f100rb/Inc/stm32f1xx_hal_conf.h | 00df8607df46426c254d10943b689ccabb66b486 | [
"MIT"
] | permissive | Lldle/FIR_Calc_Module | 4e3088709a430730075a1bc305057e7a1f1e9cfe | eb246d54303c9dbb7cb4fe9769b53ef5d0b6af2f | refs/heads/master | 2023-03-17T05:54:40.922313 | 2021-02-23T13:59:31 | 2021-02-23T13:59:31 | 341,572,911 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 15,617 | h | /**
******************************************************************************
* @file stm32f1xx_hal_conf.h
* @brief HAL configuration file.
******************************************************************************
* @attention
*
* <h2><center>© Copyright (c) 2017 STMicroelectronics.
... | [
"54582392+Lldle@users.noreply.github.com"
] | 54582392+Lldle@users.noreply.github.com |
6b6bd5b6e1280ea4cb9a3cb88623eb7889cd9687 | a1990e46ce38eb60b8534d0c60c69b7509a8cf66 | /Week03-MoreVariables/chars.c | 5f66e7aa64a1bcb6a31b1f078f5fb557ea776561 | [] | no_license | fuzzpault/UIndy-CSCI155-2019 | 30a7be485065c62ef566079b4b430d1105926ee2 | 4deb3c0d61dac16a471a021e19a8235c6d9496be | refs/heads/master | 2020-07-07T16:38:04.068775 | 2019-12-07T17:27:11 | 2019-12-07T17:27:11 | 203,408,137 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,134 | c | /*
Name: Paul Talaga
Date: Sept 9, 2019
Desc: Character arrays.
*/
#include "stdio.h"
int main(){
char a = 'z'; // A single character
char* name = "Barney"; // name is an array of characters, set to
// the length of Barney +1
char anotherName[50] = "Smith"; /... | [
"talagap@uindy.edu"
] | talagap@uindy.edu |
3b932be1ae82e4891b312c451cc5ca2b376fb895 | 00be886e1d3c6529faa9a90b3fbd8fdb7394df41 | /core/arch/arm/kernel/thread_optee_smc.c | dc4e93a9e55949c522f70a3a6a7fd983f2cd15d4 | [
"BSD-2-Clause"
] | permissive | cheat-sc/optee_os | 36f5b2080d50112d8c6b0f25e5de46d20024ed10 | 1df107b638d40df984dec3da92b5078bfe80242a | refs/heads/master | 2020-07-20T02:11:30.323314 | 2019-09-03T12:52:42 | 2019-09-04T15:37:20 | 206,554,126 | 1 | 0 | NOASSERTION | 2019-09-05T12:04:48 | 2019-09-05T12:04:47 | null | UTF-8 | C | false | false | 14,535 | c | // SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (c) 2019, Linaro Limited
*/
#include <assert.h>
#include <compiler.h>
#include <io.h>
#include <kernel/misc.h>
#include <kernel/msg_param.h>
#include <kernel/thread.h>
#include <kernel/virtualization.h>
#include <mm/core_mmu.h>
#include <optee_msg.h>
#include <... | [
"jerome.forissier@linaro.org"
] | jerome.forissier@linaro.org |
08f13882b57ce47ca441927ecf85533a0f06c1d2 | 93085ed454b08423a517d5814daaa6b1f0a598d6 | /ARM-mbed_os/STM32Cube/STM32Cube_FW_F3_V1.1.0/Projects/STM32F3348-Discovery/Examples/HRTIM/HRTIM_BuckBoost/Inc/main.h | f5ba875ba588c46eb4fefa4c29032efe63196cc5 | [
"BSD-2-Clause"
] | permissive | Jaehoon79/D-Lab | ce3e5d336112effd75af6471c250513694022493 | b93dd7cfd2eef54a2dcc8e4d94c0b63acd168da1 | refs/heads/master | 2020-04-06T07:06:50.771873 | 2014-11-27T02:40:07 | 2014-11-27T02:40:07 | 26,522,949 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 3,037 | h | /**
******************************************************************************
* @file HRTIM/HRTIM_BuckBoost/Inc/main.h
* @author MCD Application Team
* @version V1.1.0
* @date 12-Sept-2014
* @brief Header for main.c module
*************************************************************... | [
"jh228.kim@samsung.com"
] | jh228.kim@samsung.com |
14730dc7c8f65f1eb826145c14f742d9665faaf1 | 438ed830c70ed2495b2a7f88db8893cae04c0a26 | /system/create.c | e796f53da622799bb8ef685621ecba488f112dbe | [] | no_license | Alex0x45/Xinu-code-BeagleBoneBlack | 4f00b90d159c36b7bb2dd121a4e340ab35a9b674 | 01637c3c65bf91fc697869eadaed562bc23c878f | refs/heads/master | 2021-01-19T11:52:22.877427 | 2016-11-03T03:49:25 | 2016-11-03T03:49:25 | 69,772,589 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 4,129 | c | /* create.c - create, newpid */
#include <xinu.h>
local int newpid();
#define roundew(x) ( (x+3)& ~0x3)
/*------------------------------------------------------------------------
* create - create a process to start running a procedure
*------------------------------------------------------------------------
... | [
"molodan@hotmail.com"
] | molodan@hotmail.com |
db5897e4df2315ddf417aa39db7c7b6ace33e44a | 0805125dfc895cb86b01405a68593e95e1a9f747 | /examples/matrixmultiply/matrixmultiply.c | 2aa8caee4a93184207031d41d698a1821921fa35 | [] | no_license | mahdifani14/AutoTuning | 06abf7028c2bc696a3866b517fdf85852928053f | b95913e57bde5ccb30e857099a2e2d14f2f0daef | refs/heads/master | 2021-05-01T09:29:59.768280 | 2017-04-29T13:50:12 | 2017-04-29T13:50:12 | 67,365,791 | 3 | 0 | null | 2016-10-13T00:31:10 | 2016-09-04T20:06:32 | null | UTF-8 | C | false | false | 4,629 | c | // matrix multiply
// Author: Andrew Canis
// Date: June 13, 2012
#include <stdio.h>
// matrices are SIZE x SIZE
#define SIZE 20
volatile int A1[SIZE][SIZE] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,... | [
"mahdifani1369@gmail.com"
] | mahdifani1369@gmail.com |
97821295acb3d9481ef572fdbffa4b391d6adee8 | 1dc15ab1959529ee3e6f99fb5b60ef2ea1e54145 | /System_V_Rel_1.0_M68000_1984/burst/00002_ext/lib/libc/port/sys/execl.c | 9708bc13ab9a6342eef629d5862007c678358714 | [] | no_license | ryanwoodsmall/System_V_Rel_1.0_M68000_1984 | b9a49bee438098784e8a1dd9155d9645b9b4a25d | e4bf760d360414bed395cbfaeafe300f1109b79f | refs/heads/master | 2020-03-23T04:35:29.005051 | 2018-07-16T06:28:51 | 2018-07-16T06:28:51 | 141,093,059 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 215 | c | /* @(#)execl.c 2.1 */
/*
* execl(name, arg0, arg1, ..., argn, 0)
* environment automatically passed.
*/
execl(name, args)
char *name, *args;
{
extern char **environ;
return (execve(name, &args, environ));
}
| [
"rwoodsmall@gmail.com"
] | rwoodsmall@gmail.com |
0bcda631f071e8df75049aa62d7897574d1c7c6b | bdb1e24f0a0be7fd2d1c1a202fdb6f33b0b23dac | /Source/General/Driver/Font/Freetype/Core/src/gxvalid/PaxHeaders.3012/gxvmort4.c | dd988baef8f0e7ffd566ee3f05b0be1c190258be | [
"FTL",
"MIT"
] | permissive | paintdream/PaintsNow | 42f297b9596d6f825017945d6ba24321fab0946e | 71581a89585594c3b898959cea5ee9c52c9249ed | refs/heads/master | 2023-08-17T13:52:49.714004 | 2023-08-07T14:21:01 | 2023-08-07T14:21:01 | 162,007,217 | 11 | 3 | null | null | null | null | UTF-8 | C | false | false | 60 | c | 30 atime=1394128268.597222224
30 ctime=1374498495.993316253
| [
"paintdream@paintdream.com"
] | paintdream@paintdream.com |
73ad52ece1f3049720df1e164dd5239773764435 | 86615cc034e720c329883bc4884238da48bc0c40 | /Disassembler/libft/src/ft_strdup_safe.c | 7e0363a71644ecb978c73e233c31e553deb748fe | [] | no_license | KomissarovSemyon/Corewar | 9a6266511c61bbf42b60818ee7389fccbf396a8b | e507ed626b5496693b91efc1ba44ee8666d5d06f | refs/heads/master | 2020-05-16T18:01:09.051073 | 2019-04-24T11:16:08 | 2019-04-24T11:16:08 | 183,212,774 | 3 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,164 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup_safe.c :+: :+: :+: ... | [
"amerlon-@student.21-school.ru"
] | amerlon-@student.21-school.ru |
bec8b946d146de7a314aaf20658d9f1310ed0fec | 952db6059cb03cab2524e9d492715f0dfffeb70f | /KeypointDetector/keypointdetector_global.h | a936ee61a580d8215cb9cc72c89a3ec88a5856e9 | [] | no_license | jingyangcarl/MeshSubdivision_Debug | b70500edec9b7e7f00e93c91991e97e204095428 | ed7296f176ad70ada8b915271e002696490c6068 | refs/heads/master | 2021-09-10T22:24:13.079394 | 2018-04-03T06:24:14 | 2018-04-03T06:24:14 | 124,614,138 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 256 | h | #pragma once
#include <QtCore/qglobal.h>
#ifndef BUILD_STATIC
# if defined(KEYPOINTDETECTOR_LIB)
# define KEYPOINTDETECTOR_EXPORT Q_DECL_EXPORT
# else
# define KEYPOINTDETECTOR_EXPORT Q_DECL_IMPORT
# endif
#else
# define KEYPOINTDETECTOR_EXPORT
#endif
| [
"jingyang_carl@qq.com"
] | jingyang_carl@qq.com |
736b81e3bace9f84a4a811631c0b970d328e2f70 | cb8c337a790b62905ad3b30f7891a4dff0ae7b6d | /st-ericsson/multimedia/imaging/ite/inc/metrics/algotestingmode.h | efd9c7be4025fadda0ef9e2014772104c814c451 | [] | no_license | CustomROMs/android_vendor | 67a2a096bfaa805d47e7d72b0c7a0d7e4830fa31 | 295e660547846f90ac7ebe42a952e613dbe1b2c3 | refs/heads/master | 2020-04-27T15:01:52.612258 | 2019-03-11T13:26:23 | 2019-03-12T11:23:02 | 174,429,381 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,025 | h | /*
* Copyright (C) ST-Ericsson SA 2010. All rights reserved.
* This code is ST-Ericsson proprietary and confidential.
* Any use of the code for whatever purpose is subject to
* specific written permission of ST-Ericsson SA.
*/
#ifndef __INCLUDE_ALGO_TESTING_MODE_H__
#define __INCLUDE_ALGO_TESTING_MODE_H__
... | [
"xiangxin19960319@gmail.com"
] | xiangxin19960319@gmail.com |
99531f7fd6dfe78ddfcdf95fdeaae2a3b9e5fb69 | 5c255f911786e984286b1f7a4e6091a68419d049 | /vulnerable_code/be878a8c-9170-4509-a0ca-6548188a6e36.c | 9e243326d012e3441d78c2c2a982b57e853317fe | [] | 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 | 599 | c | #include <string.h>
#include <stdio.h>
int main() {
int i=0;
int j=11;
int k;
int l;
k = 53;
l = 64;
k = i/j;
l = i/j;
l = i/j;
l = i/j;
l = l/j;
l = i%j;
l = i-j;
k = k-k*i;
//variables
//random
/* START VULNERABILITY */
int a;
int b[93];
int c[86... | [
"nharmon8@gmail.com"
] | nharmon8@gmail.com |
489cf5e580b12a948af864fcd77c256881caa63e | a4f6ff28c9045c22a689f04e59edd9731e2fb61b | /hw1/prog.c | f68ef6c8054ed8980fb4ac604cc3ab661112ca10 | [] | no_license | woonkeekim/mycode | 3751bbe0ef3439166b8c89188444665d4e16c0f7 | f0ac158d25f72b7ef9078a50ed2b7846eae6d021 | refs/heads/master | 2016-09-01T18:09:13.614219 | 2015-04-17T04:46:59 | 2015-04-17T04:46:59 | 31,526,883 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,003 | c | #include <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
#include <string.h>
#include "decode.h"
#include "hexdump.h"
#include "encode.h"
void printUsage()
{
printf("Wrong format of input\n");
printf("Usage : hw1 hexdump [file]\n");
printf(" hw1 enc-base64 [file]\n");
printf(" hw1 dec-base64 [fil... | [
"woonkeek@usc.edu"
] | woonkeek@usc.edu |
94cbe0a1981a81cd6676923fe97860457795120b | f603c1740f5308b14cb07d5fe849abfa5fe5b393 | /gznet/tools/sniffer/src/stack/custom/mac/core/asyn/asyn_terminal.h | 1fdcc9c46b9a3f9d0fc3d33d077acb552e312ad3 | [] | no_license | wangjianssd/SensorBox1.0 | f8a7c6754ea5f2ff2a660275d9527fc09345e34e | c0ce2c3fef439234480ccd1cf289263dd3e4fc88 | refs/heads/master | 2021-01-12T02:36:29.822362 | 2017-01-05T01:44:24 | 2017-01-05T01:44:24 | 78,074,716 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 497 | h | #pragma once
#include "asyn_define.h"
typedef struct
{
void (*recv_cb)(sbuf_t *const sbuf);
void (*send_cb)(sbuf_t *const sbuf, bool_t state);
void (*mac_assoc_cb)(bool_t state);
void (*mac_restart)(net_mode_e mode);
} asyn_terminal_cb_t;
extern asyn_terminal_cb_t asyn_terminal_cb;
struct asyn_termina... | [
"wangjian@wsn.cn"
] | wangjian@wsn.cn |
c5419d1ac7d4963416961470f004f9a03fb401be | 9f67accf8c6cc71f028b66996eb6b0ad2f69e73e | /src/ConvolutionFunctions/arm_depthwise_separable_conv_HWC_u4_u2_u2_icn.c | b64e705be4388b533399157142b5bd4594cadf78 | [] | no_license | sunlex0717/CMix-NN | 497300f4c016796585a1347ea1a67d70064d9bbb | a97415fd56bb6a9d733d95bb113baaf14d8ff175 | refs/heads/master | 2022-04-25T13:43:20.075571 | 2020-03-19T16:25:11 | 2020-03-19T16:25:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 14,220 | c | /* Copyright (C) 2020 University of Bologna
*
* SPDX-License-Identifier: Apache-2.0
*
* 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
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless ... | [
"alessandro.capotondi@unimore.it"
] | alessandro.capotondi@unimore.it |
9c3a8338bdcccc0885e40f587a3417e352286421 | 1179e8ee641a3a505dc7e811a4babb5ae136bf82 | /src/duk_debug_vsnprintf.c | 38b1fdce0d66228b8acf9718266134b03d8f7463 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | andoma/duktape | 7b82d59cba72fe0bc7836316dd0be7eb4d65c291 | 6ed0d11d082033a897dcdc2207674376f9f72679 | refs/heads/master | 2020-04-30T11:07:25.655195 | 2014-04-29T20:22:18 | 2014-04-29T20:22:18 | 19,371,084 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 28,449 | c | /*
* Custom formatter for debug printing, allowing Duktape specific data
* structures (such as tagged values and heap objects) to be printed with
* a nice format string. Because debug printing should not affect execution
* state, formatting here must be independent of execution (see implications
* below) and... | [
"sami.vaarala@iki.fi"
] | sami.vaarala@iki.fi |
0d320f8fc2aa6f185fd7b54f5e94ab8b5e0bc04a | cbc35abd7528ce93937d3df9e6ec1f47ac078738 | /old/嵌入式/仿真器/仿真器/JLinkARM_V408l/Samples/RDI/Projects/IAR/Philips/LPC213x/app/user_func.h | 64b01a4c2b207f78faa09332de9aec6fae7f0fe6 | [] | no_license | InnoMachine/JuniorYear_Notes | 52fff6e01bf0a4a06bc12910b23d6bace6eca882 | f8f1a8a05a364e6fff2bd4bea86c6ce3aa767be8 | refs/heads/master | 2021-01-23T08:52:45.189638 | 2015-09-17T13:15:48 | 2015-09-17T13:15:48 | 42,172,090 | 4 | 2 | null | null | null | null | UTF-8 | C | false | false | 2,149 | h | #ifndef __USER_FUNC_H
#define __USER_FUNC_H
/*************************************************************************
*
* Used with ICCARM and AARM.
*
* (c) Copyright IAR Systems 2003
*
* File name : config.h
* Description : Define common defenition
*
* History :
* 1. Data : Feb... | [
"jx13@software.nju.edu.cn"
] | jx13@software.nju.edu.cn |
b689046f618fd0d4f91f7b0ce71086213c00d345 | 392ae937f86370366656d0f2182b3d4732e6300e | /source_eulerian_2p.c | a9ad9825a2d1890c2876776c3d06823517e772ed | [] | no_license | DFTFFT/POMECO_Fluent | b45cc6b27ac833a7d2367dc4c9f852657f06f1dd | 02ec967c6744ed5774845d985eaa1977672bdda1 | refs/heads/master | 2021-01-22T19:36:21.762690 | 2017-03-23T16:59:42 | 2017-03-23T16:59:42 | 85,219,422 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 27,916 | c | #include "udf.h"
#include "stdio.h"
#include "stdlib.h"
//zone index
#define bed_fluid_zone_ID 3
#define bed_solid_zone_ID 17
#define pool_zone_ID 4
//domain index
#define mixture_domain_ID 1
#define liq_domain_ID 2 //obtained from GUI
#define vap_domain_ID 3 //obtained from GUI
//phase domain inde... | [
"hzheng@kth.se"
] | hzheng@kth.se |
715903e14be16e6a814af6a60ebfe9cc6c29eed7 | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE191_Integer_Underflow/s02/CWE191_Integer_Underflow__int_fgets_sub_21.c | 6ab1a214e38d0a6ea28c07db4bd11b76b039c513 | [] | 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 | 5,577 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE191_Integer_Underflow__int_fgets_sub_21.c
Label Definition File: CWE191_Integer_Underflow__int.label.xml
Template File: sources-sinks-21.tmpl.c
*/
/*
* @description
* CWE: 191 Integer Underflow
* BadSource: fgets Read data from the console using fgets()
* Go... | [
"yzhang0701@gmail.com"
] | yzhang0701@gmail.com |
f04b10c762f1133d415d67c02b3fa9f7c4e1a8f3 | f636d71724587e300b1d330643770880511f774a | /test/tests.h | f068bfd0259a34f3f29d1ab3265703d5631e1a53 | [] | no_license | JJSCapstone/c_linkedlist-jomoody10 | ddf6d97256364377ca878b53b4fa07a933219081 | 6f8e792c0f85899b163d1486b83cc87cea959cac | refs/heads/main | 2023-04-17T03:27:45.646519 | 2021-04-20T20:18:22 | 2021-04-20T20:18:22 | 359,940,627 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 209 | h | #ifndef TESTS_H_INCLUDED
#define TESTS_H_INCLUDED
int main(int argc, char *argv[]);
int insertTest(int data);
int emptyTest();
int sizeTest();
int findTest(int data);
int deleteTest(int data);
#endif
| [
"66690702+github-classroom[bot]@users.noreply.github.com"
] | 66690702+github-classroom[bot]@users.noreply.github.com |
06d489cee513fe53be868cd631e2f4fbf8c51261 | d1cd0e61a0d5ed2b5341bc9e996625fb677f4f23 | /lib/asn1c/nr_rrc/FailureInformation.c | bb83cc9d094f4762d3abf7473a85abb9ff3f98c8 | [
"Apache-2.0"
] | permissive | soumyadeepbi/free5GRAN | 251bff61bfd30628f0861a285086ac94368de34f | 4e92458e955f59d86463ce65ea08c5c06cc8a48e | refs/heads/master | 2023-07-28T20:23:42.404672 | 2021-10-06T16:32:47 | 2021-10-06T16:32:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,602 | c | /*
* Copyright 2020-2021 Telecom Paris
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 applicable law or agreed to in... | [
"aymeric@dejavel.fr"
] | aymeric@dejavel.fr |
41026ea9cec97d4a1bb8ec4f7063d5ef9786cefd | 6631e44e66f48953ce881f2ef7cd94f675d4767f | /SystemProgramming_1/TESTS/test_main.c | 566ea34222d2a647ee030a2d552bff9de5c58f7b | [] | no_license | ChristinaAndrinopoyloy/C | c49d48bd046d8dd06f9faea96f2661b8f97a4210 | 04dae7906ff79c8552cb3d1c4c965d82e0566bd9 | refs/heads/master | 2020-07-28T22:24:55.968808 | 2019-09-19T13:56:58 | 2019-09-19T13:56:58 | 209,559,394 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 165 | c | #include "gtest/gtest.h"
//#include "test_linked_list.h"
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
} | [
"noreply@github.com"
] | ChristinaAndrinopoyloy.noreply@github.com |
177c4f0d6965d0a75043dc9cf092a3fad40ff8cd | 24d856d98c85a319d53be2768ccc176a50873fa3 | /eglibc-2.15/sysdeps/ieee754/ldbl-opt/nldbl-obstack_printf_chk.c | 8e7d8eb4ad98a9b8d4c7333f080c4ebab515fa5a | [
"LGPL-2.1-only",
"GPL-2.0-only",
"LicenseRef-scancode-inner-net-2.0",
"BSD-3-Clause",
"LGPL-2.1-or-later",
"HPND",
"LicenseRef-scancode-other-copyleft",
"CMU-Mach",
"LicenseRef-scancode-other-permissive",
"BSD-2-Clause"
] | permissive | dozenow/shortcut | a4803b59c95e72a01d73bb30acaae45cf76b0367 | b140082a44c58f05af3495259c1beaaa9a63560b | refs/heads/jumpstart-php | 2020-06-29T11:41:05.842760 | 2019-03-28T17:28:56 | 2019-03-28T17:28:56 | 200,405,626 | 2 | 2 | BSD-2-Clause | 2019-08-03T19:45:44 | 2019-08-03T17:57:58 | C | UTF-8 | C | false | false | 280 | c | #include "nldbl-compat.h"
int
attribute_hidden
__obstack_printf_chk (struct obstack *obstack, int flag, const char *fmt, ...)
{
int result;
va_list ap;
va_start (ap, fmt);
result = __nldbl___obstack_vprintf_chk (obstack, flag, fmt, ap);
va_end (ap);
return result;
}
| [
"jflinn"
] | jflinn |
2fb5ef02ac0abd12f20851e0ee8dc194d0e803a9 | 1513f7e79a7142c933636066908b79ebc131f10e | /squashfs-root/usr/src/linux-headers-5.0.0-23-generic/scripts/mod/sumversion.c | e3ad2597b65ed192dad9d6081bb25aaf2440f751 | [] | no_license | softwarenerd7/eXternOS-Base | 1e11dd26ae2dfebe77cf3a46c0e6925bc7f83542 | 2e202775e52dd69352b7325d270090323121111d | refs/heads/master | 2023-01-12T10:31:48.635447 | 2020-11-17T21:08:36 | 2020-11-17T21:08:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 56 | c | ../../../linux-headers-5.0.0-23/scripts/mod/sumversion.c | [
"anesuemail@gmail.com"
] | anesuemail@gmail.com |
ad3c21114fa9bb49ee10632e199a9bb241b5de78 | 67f37e9f53e8015cdecc4fe8b1045777ffbcc4c1 | /test_inter_code.c | 4929b8d789106eb4cb3a38b8ca74720b0fab7cd8 | [] | no_license | Zossin/cmm-compiler | f1f07e058cf845c638b51f6db2fc8fec35ad7316 | 5e3126a9c243a2d44c9e4735f783829531dad143 | refs/heads/master | 2020-05-16T03:42:42.832428 | 2012-05-31T14:45:22 | 2012-05-31T14:45:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,441 | c | #include "common.h"
#include "inter_code.h"
#include <stdio.h>
int main(int argc, char **argv) {
InterCodeList *list1 = make_code_list(gen_func_code("main"));
list1 = link_inter_code(2, list1, make_code_list(gen_command_code(Read, new_var_op(1))));
list1 = link_inter_code(2, list1, make_code_list(gen_assig... | [
"njulzx@gmail.com"
] | njulzx@gmail.com |
c81d19773c5190472671d93eaa9750757922ff36 | a86995a16ba2e574376c882c3a9eead8143dd4f8 | /STM32Cube_FW_F4_V1.9.0/Drivers/BSP/STM32F429I-Discovery/stm32f429i_discovery_io.c | ff5e68d30879eaf257e7ac9faa679bb3d956fec5 | [] | no_license | umapathiuit/Stm32-Tools-Evaluation | ded5f569677c8e9cbe708a57b5db19780a86fd6c | e9fd061f48f50501606bc237c6773c2b6c28d345 | refs/heads/master | 2020-12-02T17:11:19.014644 | 2015-11-23T07:45:38 | 2015-11-23T07:45:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 6,665 | c | /**
******************************************************************************
* @file stm32f429i_discovery_io.c
* @author MCD Application Team
* @version V2.1.2
* @date 02-March-2015
* @brief This file provides a set of functions needed to manage the STMPE811
* IO Expander device mo... | [
"git@jme.de"
] | git@jme.de |
d70b8f0cb73d1f4cde002d909f1893b7b7b4ced2 | 009ea185c93751ea0b69d641686844d1e9eb1522 | /HARDWARE/WK2124/wk2xxx.h | 9c2af9f260eb65f08829a15ed535c2779dcad371 | [] | no_license | yanlaisheng/Robot | 1405abeeb4f62bbc33afcc1c6ea033e519a446f5 | c9bfeb271a98c641230066f195d511d4761d053e | refs/heads/V1.0.01 | 2023-05-26T16:53:58.226081 | 2021-05-23T14:48:26 | 2021-05-23T14:48:26 | 361,655,336 | 2 | 0 | null | 2021-05-22T04:03:54 | 2021-04-26T07:22:19 | C++ | GB18030 | C | false | false | 4,601 | h | #include "typedef.h"
#define WK2XXX_PORT1 1
#define WK2XXX_PORT2 2
#define WK2XXX_PORT3 3
#define WK2XXX_PORT4 4
//如下为WK系列串口扩展芯片的寄存器地址定义,不同的芯片,可能寄存器少一些,所以具体的寄存器请看数据手册
//wkxxxx Global rigister address defines
#define WK2XXX_GENA 0X00
#define WK2XXX_GRST 0X01
#define WK2XXX_GMUT 0X02
#define WK2XXX... | [
"yanlaisheng@qq.com"
] | yanlaisheng@qq.com |
88543db74aff3ff31b00e7a1330fb5dc1f10e4bc | 0db93cfe1d7043d5d45da08eba9fd4a142b05c72 | /maps_data.h | 472a749773280d7f0b96d8da83ea77cbb400f32f | [] | no_license | streetmack/Dragon-Lands | 2747bd8d8f8e4017fe32e57fc76a3e7a33d37dc4 | f7ad83a0ef98d1af6b5aae82115c988d803069ed | refs/heads/master | 2020-06-11T00:07:56.020739 | 2016-12-21T14:17:54 | 2016-12-21T14:17:54 | 75,835,928 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 9,098 | h | // Локации игры
#pragma once
#include <wchar.h>
wchar_t maps[map_count_y][map_count_x][map_height][map_width]=
{
L"RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR",
L"RRrrrrRRRRRRRRRRRRRRRR$* п@RRRRR $ $RRR TT п ", // Горы
L"Rrr rrRRRRRRRRRRRRRRR$$п $$RR DDRRRR",
L"RR ... | [
"streetmack@gmail.com"
] | streetmack@gmail.com |
fb745a0f456d1975774efcc383ebd8d5e944cbe4 | 72e63c7839fcf05ffb3296b5b1898d0a6a5df9e8 | /tests/smoke.h | 08f33a709d285ded006ca4b58c7eff0d37d0ff1c | [] | no_license | AlexCasual/Metaresc | d427d6127e7e14b54b4be95962589903f2f82dbf | 4af941f060f547abfe979a16d2ace9f345babac3 | refs/heads/master | 2022-12-18T06:17:44.798095 | 2020-09-23T06:48:29 | 2020-09-23T06:48:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 5,399 | h | #include <string.h>
#include <stddef.h>
#include <stdlib.h>
#include <sys/times.h>
#include <check.h>
#include <metaresc.h>
/*
Test is doing the following:
1. serialize mr_conf - library config structure
2. load back config from serialized representation into another variable
3. replace global variable with t... | [
"hnarkaytis@gmail.com"
] | hnarkaytis@gmail.com |
b20e79dc2772f851f6c96d53e516ec954b520f12 | 6c97c6aaabfb48f0b4efa48f514d834e42afaec4 | /includes/libft/ft_strlen.c | 9c48af5ab0047571cc2fc2172ea2597cdfd81e88 | [] | no_license | rengen12/fillit | 9e7953c00ba6fc726d96926fd9207ae3b9c0f645 | 57043aa22a7c07a6c5826630f099adddbb925991 | refs/heads/master | 2021-08-08T21:47:55.615390 | 2017-11-11T11:25:21 | 2017-11-11T11:25:21 | 109,869,434 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 1,014 | c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strlen.c :+: :+: :+: ... | [
"rengen12@gmail.com"
] | rengen12@gmail.com |
b96d897ab82e8eea7ccc31ae2a7c63fb2bed6be6 | 68ab723f4dd74d71023e1d9e8126ac76a6f0d591 | /Microchip/SAMV71_DFP/4.0.38/samv71/include/component/mcan.h | ae1c926824aae30ca420df5d4deaa7e76533835d | [] | no_license | fb321/dev_packs | b0151f1810046c92eede22d878b6212cfe4501f0 | 92b75cbbf1e7e0d89b9d6cbddcba58ca03081170 | refs/heads/master | 2022-02-08T19:37:28.356201 | 2019-07-02T15:39:48 | 2019-07-03T11:36:29 | 199,966,277 | 0 | 1 | null | 2019-08-01T03:03:52 | 2019-08-01T03:03:51 | null | UTF-8 | C | false | false | 272,175 | h | /**
* \brief Component description for MCAN
*
* Copyright (c) 2019 Microchip Technology Inc. and its subsidiaries.
*
* Subject to your compliance with these terms, you may use Microchip software and any derivatives
* exclusively with Microchip products. It is your responsibility to comply with third party license... | [
"thibaut.viard@microchip.com"
] | thibaut.viard@microchip.com |
baec8e1974ffdf646487963044032673516830a6 | bc49e76eed59d7d91f021dc0f94d589a4713d4f6 | /week_2/buggy2.c | c02972de4644f0bde15ce964bf87258b928b7f25 | [
"MIT"
] | permissive | lap00zza/cs50x | 42b7df0af3c01f92006567c08dbb8ecb370e581b | 14e78bd7417bc5b4c5b1625dfa1a577ab29f8235 | refs/heads/master | 2020-12-03T00:16:33.000329 | 2017-07-03T16:37:07 | 2017-07-03T16:37:07 | 96,007,954 | 1 | 0 | null | null | null | null | UTF-8 | C | false | false | 134 | c | #include <stdio.h>
#include <cs50.h>
int main(void) {
int i = 0;
while (i < 10) {
printf("#\n");
i++;
}
} | [
"jewelmahanta@gmail.com"
] | jewelmahanta@gmail.com |
7a848139e4cd41722733ecb2ca4916e456dd5e29 | 588f2750635dccaf9e8bdd08ad7e201004039310 | /SampleCode/CardReader/USBD_CCID/Ccid_if.c | 01bf63233cf4792b5ffe3140d98aec80b9b518e3 | [
"Apache-2.0"
] | permissive | OpenNuvoton/M4521BSP | c3b01e9663fb35d01b21660220b205e0e6292268 | a88b469c02359b9a895620e9e073b6fbaf278d34 | refs/heads/master | 2023-05-13T06:18:29.658899 | 2023-05-10T02:10:01 | 2023-05-10T02:10:01 | 151,225,829 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 15,778 | c | /**************************************************************************//**
* @file ccid_if.c
* @version V2.00
* $Revision: 3 $
* $Date: 15/09/02 10:03a $
* @brief M4521 USBD CCID interface file
*
* @note
* Copyright (C) 2018 Nuvoton Technology Corp. All rights reserved.
************************************... | [
"yachen@nuvoton.com"
] | yachen@nuvoton.com |
94bd6de67b83c41bd564c38b857a9d20dbea6f69 | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE78_OS_Command_Injection/s04/CWE78_OS_Command_Injection__char_listen_socket_execlp_10.c | 5ad193b061ab9edd5afb037b575218b435a9912f | [] | 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 | 7,240 | c | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE78_OS_Command_Injection__char_listen_socket_execlp_10.c
Label Definition File: CWE78_OS_Command_Injection.strings.label.xml
Template File: sources-sink-10.tmpl.c
*/
/*
* @description
* CWE: 78 OS Command Injection
* BadSource: listen_socket Read data using a l... | [
"yzhang0701@gmail.com"
] | yzhang0701@gmail.com |
58d905b24f065dae69eeb9485e14fa40c1103e82 | 0f6e91db69aafaf0785e6626e64657ece6a69343 | /Sumulator/Classes/Native/mscorlib_System_Runtime_Remoting_Messaging_MethodCallMethodDeclarations.h | 912cddf46cb24244333af6d666727edbc45c6d0b | [] | no_license | fullcorder/UnityDemo-Project-For-Jenkins | 35b373bed87975b3a72de29b3b65dbe187cbcd75 | f1a2741b1feecc5735b5db9503bcc23bcf104641 | refs/heads/master | 2021-01-10T11:09:28.351327 | 2015-11-01T06:00:08 | 2015-11-01T06:00:08 | 45,330,008 | 1 | 1 | null | null | null | null | UTF-8 | C | false | false | 5,921 | h | #pragma once
#include <stdint.h>
#include <assert.h>
#include <exception>
#include "codegen/il2cpp-codegen.h"
// System.Runtime.Remoting.Messaging.MethodCall
struct MethodCall_t1297;
// System.Runtime.Remoting.Messaging.Header[]
struct HeaderU5BU5D_t1575;
// System.Runtime.Serialization.SerializationInfo
struct Seria... | [
"kobaring@icloud.com"
] | kobaring@icloud.com |
d25bb88cb5146ade5a3e1fce0384baaf5f278002 | a565a9bdfc9961f47f57a459f7a395779b7f984f | /base/preprocess/varargs.h | 25e331fb6232d93baa61233d0555dc9ed0979309 | [
"BSD-3-Clause"
] | permissive | hjinlin/toft | d0a97ecb9ae9c292a1a383b642905325173a890b | ebf3ebb3d37e9a59e27b197cefe8fdc3e8810441 | refs/heads/master | 2020-04-12T03:25:29.066012 | 2019-04-18T10:02:42 | 2019-04-18T10:02:42 | 162,266,884 | 0 | 0 | BSD-3-Clause | 2018-12-18T09:54:48 | 2018-12-18T09:54:48 | null | UTF-8 | C | false | false | 2,838 | h | // Copyright (c) 2013, The Toft Authors.
// All rights reserved.
//
// Author: CHEN Feng <chen3feng@gmail.com>
// Created: 2014-08-13
#ifndef TOFT_BASE_PREPROCESS_VARARGS_H
#define TOFT_BASE_PREPROCESS_VARARGS_H
#pragma once
#include "toft/base/preprocess/stringize.h"
// Count the number of va args
#define TOFT_PP_N... | [
"chen3feng@gmail.com"
] | chen3feng@gmail.com |
c2a8210bc5bd246fef8c9aa25f3cd2c861f1b690 | a628d2098683b454d84afe5142d968cec5446a55 | /nginx_kafka/librdkafka-master/src/rdkafka_topic.c | 0c6c25397b7c8185b3be51832b9168643d6a013d | [
"BSD-2-Clause",
"BSD-3-Clause",
"MIT"
] | permissive | sdgdsffdsfff/xpod | 6c6e683e9b16b3dedc8fb19f4c68ea108e9daa81 | a239bd7860a08e4728e691fc419c0fd5150b1173 | refs/heads/master | 2021-01-16T18:48:07.739824 | 2014-10-13T13:01:16 | 2014-10-13T13:01:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 31,377 | c | /*
* librdkafka - Apache Kafka C library
*
* Copyright (c) 2012,2013 Magnus Edenhill
* 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 t... | [
"fuping.wang@ttpod.com"
] | fuping.wang@ttpod.com |
4a1eaa658c417dfdcb28a75644d4de5ebc21399b | bd0ff7058778a20514a8ea3c410467fb48e9d551 | /Envision OS/include/kernel/KernelAcpi.h | 015c8614b34c1d0f7f82bdab4beb04fe0b397e4b | [] | no_license | sidhantgoel/EnvisionOS | 87f41c954d6295f75dc2f0b5bcd070ad498478a2 | aaa51748b3bf9b496c9b184c7a3b5fb542cb9575 | refs/heads/master | 2016-09-05T19:18:23.393358 | 2014-11-13T14:09:56 | 2014-11-13T14:09:56 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C | false | false | 2,119 | h | ///////////////////////////////////////////////////////////////////////////////////
//----------------------------------KernelACPI.h---------------------------------//
// v 1.0 //
// ... | [
"sidhant@ezetap.com"
] | sidhant@ezetap.com |
59aec50d28357ecd5bb1579498edb252e9c6540d | 6bbd1b35f09982c18c9a580a26fc7692e1499b69 | /Linux/driver/kmd/src/aipu/zhouyi/z1/z1.c | b6fcd5c6192744684459b4b025f5de016aa4da4b | [] | no_license | huangqiang2007/hq_projs | ca206164b308c2fd2c4e4d7d9b0ac27ff87317e8 | d36d66d2b54c57d34bc409e10fb02d5e1e687ed6 | refs/heads/master | 2021-06-23T11:35:48.805562 | 2020-12-24T10:13:06 | 2020-12-24T10:13:06 | 143,253,347 | 0 | 1 | null | null | null | null | UTF-8 | C | false | false | 8,569 | c | /**********************************************************************************
* This file is CONFIDENTIAL and any use by you is subject to the terms of the
* agreement between you and Arm China or the terms of the agreement between you
* and the party authorised by Arm China to disclose this file to you.
* Th... | [
"huangqiang2007@163.com"
] | huangqiang2007@163.com |
5b11713f055b80e90581dffaa2d781a29f272f20 | a33aac97878b2cb15677be26e308cbc46e2862d2 | /program_data/PKU_raw/81/1942.c | 5fcd169a0f6090d889e7250860854c3577f93fd4 | [] | no_license | GabeOchieng/ggnn.tensorflow | f5d7d0bca52258336fc12c9de6ae38223f28f786 | 7c62c0e8427bea6c8bec2cebf157b6f1ea70a213 | refs/heads/master | 2022-05-30T11:17:42.278048 | 2020-05-02T11:33:31 | 2020-05-02T11:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 591 | c | int pd(int n,int m)
{ if (n<=4 && n>=0 && m<=4 && m>=0) return 1;
else return 0;
}
int main(int argc, char* argv[])
{
int a[5][5],b[5];
int i,j,m,n;
for (i=0;i<=4;i++)
{ for (j=0;j<=4;j++)
{ scanf ("%d",&a[i][j]);
}
}
scanf ("%d %d",&n,&m);
if (pd(n,m)==0) printf("error");
if (pd(n... | [
"bdqnghi@gmail.com"
] | bdqnghi@gmail.com |
72492c2805bc6a04d03680fb52d6a403fa31a932 | 019945bab819e85af4bc8ada9257d90e7c9f13c0 | /C/dotnet/include/System_Diagnostics_TraceSource.h | 677bfe81224f820cbe10640dad4158b08b8c3be2 | [] | no_license | ericsink/sourcegear-bridge-swift-framework-dotnet | 51829718d46c139d04d36b67dbcf27b8f7591d79 | ce6db986269a455ed220c79142cb42fc86fcfd45 | refs/heads/main | 2023-08-02T16:20:59.239556 | 2021-09-15T19:17:54 | 2021-09-15T19:17:54 | 406,895,009 | 5 | 0 | null | null | null | null | UTF-8 | C | false | false | 32,265 | h | // this file is automatically generated
// Copyright 2021 SourceGear
#include <stdint.h>
#ifndef INCLUDE_System_Diagnostics_TraceSource
#define INCLUDE_System_Diagnostics_TraceSource
#ifdef __cplusplus
extern "C" {
#endif
typedef const void* _Nonnull SG_HNDL_NONNULL;
typedef const void* _Nullable SG_HNDL_NULLABLE;
... | [
"eric@sourcegear.com"
] | eric@sourcegear.com |
504d0d78ec56d3d6d437382af0096b1c4d02f48d | fc987ace8516d4d5dfcb5444ed7cb905008c6147 | /third_party/perl/c/i686-w64-mingw32/include/audiosessiontypes.h | eff494d026881280c3b888bd9719b6704551c979 | [
"BSD-3-Clause",
"LicenseRef-scancode-public-domain-disclaimer",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0"
] | permissive | nfschina/nfs-browser | 3c366cedbdbe995739717d9f61e451bcf7b565ce | b6670ba13beb8ab57003f3ba2c755dc368de3967 | refs/heads/master | 2022-10-28T01:18:08.229807 | 2020-09-07T11:45:28 | 2020-09-07T11:45:28 | 145,939,440 | 2 | 4 | BSD-3-Clause | 2022-10-13T14:59:54 | 2018-08-24T03:47:46 | null | UTF-8 | C | false | false | 979 | h | /**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#ifndef __INC_AUDIOSESSIONTYPES__
#define __INC_AUDIOSESSIONTYPES__
typedef enum _AudioSessionState {
... | [
"hukun@cpu-os.ac.cn"
] | hukun@cpu-os.ac.cn |
99aca002e7e204e40f6b8c16178112b0cff0388c | 1b227c0f3a6f90db0e646fcd3615ebfc29144153 | /project/软件代码/code/Drv/IR_Alert/ir_alert.c | bee1a2bfb657a819e5269036a0b3173edbbcd94e | [] | no_license | kc-blue/CloudSafeBox | 87207578b7a167afb15bb79d9073fbcb58547559 | 1b77c4354d8c8ba901ebd05d00f1897900efe21b | refs/heads/master | 2021-09-23T14:11:03.206959 | 2018-09-19T01:31:19 | 2018-09-19T01:31:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 522 | c | #include "..\..\..\..\Libraries\stm32f10x.h"
#include "ir_alert.h"
void irInit(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode =... | [
"954009481@qq.com"
] | 954009481@qq.com |
2c69a62bab54e789f208661d824224938bb1aef9 | f14f1fb63b15e716b150c245eb0802e39701a678 | /listaDuplamenteEncadeada.c | cd65fb6759da09513ade49a1ce74b605d8d85dfd | [] | no_license | EdsonMateus1/codigos-em-C-C-faculdade | 331e834abe8f61c55e8ff84e25913fa19f8380bd | 89c3cc0ce4ca45a33278cccb7630d3bc09b4fbfe | refs/heads/master | 2022-11-03T03:39:59.590885 | 2020-06-18T21:23:54 | 2020-06-18T21:23:54 | 273,053,286 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 2,800 | c | #include <stdlib.h>
#include <stdio.h>
typedef struct listDupla
{
int info;
struct listDupla *prox;
struct listDupla *ant;
}ListDupla;
ListDupla *criar_no();
ListDupla *inser_inicio(ListDupla *list);
ListDupla *insert_fim(ListDupla *list);
void imprimir_lista(ListDupla *list);
ListDupla *remover_fim(ListD... | [
"tioed2015@gmail.com"
] | tioed2015@gmail.com |
c642d1f478d48bdf494c717b0db0cd4f44a07f6a | 247f5b0b7a997a622375d0081930f4ecf02088fe | /Wi-Fi/WIFI_SERVER/serial.c | eb343ae3143595bc7c61926f967270d3d736d52a | [] | no_license | aashay4123/LPC2148 | 04e94d8ff77273eba7293c742e1ef273ad75c081 | 854acad9b75155ca8744b55b5db786ec64248043 | refs/heads/master | 2022-12-02T21:47:53.604152 | 2020-08-24T11:08:17 | 2020-08-24T11:08:17 | 289,903,444 | 2 | 0 | null | null | null | null | UTF-8 | C | false | false | 867 | c | #include<lpc214x.h>
#include<stdlib.h>
#include<string.h>
#include<stdio.h>
#include "lcd.h"
void USARTInit()
{
PINSEL0 = 0x00050005; //Select TxD for P0.0 and RxD for P0.1
U1LCR = 0x83;// 8 bits, no Parity, 1 Stop bit
U1DLL = 6; /* 115200 Baud Rate @ 15MHz VPB Clock */
U1FDR=0x0... | [
"aashayphirke5798@gmail.com"
] | aashayphirke5798@gmail.com |
0fa36ea49dbce94c534dfc4b9b866099b39faf15 | 1a04b51891f8c8e38001aa843256c043b3d48739 | /src/audio/audio.c | 12adce59e3a2f68f405756b6bdc351fff56f509e | [] | no_license | bae-sung/c-test | d5d72c8e5e2a9fde065b2e4a25514b42c45903e4 | a2e3f9b82ebc5179c896cc9ec54081cd704e2254 | refs/heads/master | 2021-06-09T08:00:37.437742 | 2019-04-15T03:19:49 | 2019-04-15T03:19:49 | 180,948,180 | 0 | 0 | null | null | null | null | UTF-8 | C | false | false | 24 | c |
void audio_foo()
{
} | [
"siguser@pacific.local.synopsys.com"
] | siguser@pacific.local.synopsys.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.