This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
FUSE: Filesystem in Userspace | |
Copyright (C) 2001-2007 Miklos Szeredi <[email protected]> | |
Copyright (C) 2020 furandon_pig <[email protected]> | |
This program can be distributed under the terms of the GNU GPLv2. | |
See the file COPYING. | |
*/ | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 実行例: | |
* $ java Main | |
* s1= 日本語, length= 9 | |
* s2= 日本語, length= 14 | |
* oooooooooxxxxx | |
*/ | |
public class Main { | |
public static void main(String... args) throws Exception { | |
// どちらもSystem.out.println()では「日本語」と表示される。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# BSD 2-Clause License | |
# | |
# Copyright (c) 2019, furandon-pig | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*- | |
* | |
* 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 list of conditions and the following disclaimer. | |
* 2. Redistributions in binary form must reproduce the above copyright | |
* notice, this list of conditions and the following disclaimer in the | |
* documentation and/or other materials provided with the distribution. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* hello.c - kernel module sample with sysctl value | |
*/ | |
#include <linux/kernel.h> | |
#include <linux/module.h> | |
#include <linux/seq_file.h> | |
static struct ctl_table_header *hello_sysctl_header; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* $NetBSD: datefs.c,v 1.18 2008/11/26 14:03:48 pooka Exp $ */ | |
/* | |
* Copyright (c) 2007 Antti Kantee. 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, this list of conditions and the following disclaimer. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* $NetBSD: hello.c,v 1.1 2015/05/13 07:07:36 pgoyette Exp $ */ | |
/*- | |
* Copyright (c) 2015 The NetBSD Foundation, 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: | |
* 1. Redistributions of source code must retain the above copyright |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/emulate/emulate.h b/emulate/emulate.h | |
index d9a593c..279fa5e 100644 | |
--- a/emulate/emulate.h | |
+++ b/emulate/emulate.h | |
@@ -6,6 +6,15 @@ | |
#include <stdbool.h> | |
#include <time.h> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# example) | |
# ${BASE_URL}/NetBSD-7.0/${SRC_DIR} | |
BASE_URL=http://ftp.jaist.ac.jp/pub/NetBSD/ | |
SRC_DIR=source/sets/ | |
TEMP_DIR=${HOME}/.nbsd_kernsrc_list | |
KERNSRC_LIST_HTML=${TEMP_DIR}/kernsrc_list.html | |
KERNSRC_LIST=${TEMP_DIR}/kernsrc_list.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Office UI Fabric Advent Calendar 2015用のパネルの | |
* サンプルプログラムで使用しているヘルパスクリプト | |
* | |
* 以下のサンプルプログラム(MIT License)のJSコードをサンプル用に一部 | |
* 修正しています。 | |
* Panel | |
* http://dev.office.com/fabric/components/panel | |
*/ | |