generated from aboutcode-org/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from nexB/clean-strings
Improve xgettext handlings
- Loading branch information
Showing
11 changed files
with
3,565 additions
and
63 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* vi: set sw=4 ts=4: */ | ||
/* | ||
* fdisk.c -- Partition table manipulator for Linux. | ||
* | ||
* Copyright (C) 1992 A. V. Le Blanc ([email protected]) | ||
* Copyright (C) 2001,2002 Vladimir Oleynik <[email protected]> (initial bb port) | ||
* | ||
* Licensed under GPLv2 or later, see file LICENSE in this source tree. | ||
*/ | ||
//applet:IF_FDISK(APPLET(fdisk, BB_DIR_SBIN, BB_SUID_DROP)) | ||
|
||
//kbuild:lib-$(CONFIG_FDISK) += fdisk.o | ||
|
||
/* Looks like someone forgot to add this to config system */ | ||
//usage:#ifndef ENABLE_FEATURE_FDISK_BLKSIZE | ||
#include "libbb.h" | ||
#include "unicode.h" | ||
|
||
static void list_types(const char *const *sys); | ||
"\x0a" "OS/2 Boot Manager",/* OS/2 Boot Manager */ | ||
"\x42" "SFS", | ||
"\x63" "GNU HURD or SysV", /* GNU HURD or Mach or Sys V/386 (such as ISC UNIX) */ | ||
"\x80" "Old Minix", /* Minix 1.4a and earlier */ | ||
"\x81" "Minix / old Linux",/* Minix 1.4b and later */ | ||
"\x82" "Linux swap", /* also Solaris */ | ||
"\x83" "Linux", | ||
"\x84" "OS/2 hidden C: drive", | ||
"\x85" "Linux extended", | ||
"\x86" "NTFS volume set", | ||
"\x87" "NTFS volume set", | ||
"\x8e" "Linux LVM", | ||
"\x9f" "BSD/OS", /* BSDI */ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
{ | ||
"files": [ | ||
{ | ||
"path": "fdisk.c", | ||
"type": "file", | ||
"source_strings": [ | ||
{ | ||
"line_numbers": [ | ||
20 | ||
], | ||
"string": "OS/2 Boot Manager" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
21 | ||
], | ||
"string": "BSFS" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
22 | ||
], | ||
"string": "cGNU HURD or SysV" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
23 | ||
], | ||
"string": "Old Minix" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
24 | ||
], | ||
"string": "Minix / old Linux" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
25 | ||
], | ||
"string": "Linux swap" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
26 | ||
], | ||
"string": "Linux" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
27 | ||
], | ||
"string": "OS/2 hidden C: drive" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
28 | ||
], | ||
"string": "Linux extended" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
29 | ||
], | ||
"string": "NTFS volume set" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
30 | ||
], | ||
"string": "NTFS volume set" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
31 | ||
], | ||
"string": "Linux LVM" | ||
}, | ||
{ | ||
"line_numbers": [ | ||
32 | ||
], | ||
"string": "BSD/OS" | ||
} | ||
], | ||
"scan_errors": [] | ||
} | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
date: 2024-03-16 | ||
download_url: https://git.busybox.net/busybox/plain/util-linux/fdisk.c?h=1_35_stable | ||
notes: stripped down to the few klines we care for |
Oops, something went wrong.