Skip to content

Commit

Permalink
[PATCH] powerpc: Add strne2a() to convert a string from EBCDIC to ASCII
Browse files Browse the repository at this point in the history
Add strne2a() which converts a string from EBCDIC to ASCII.

Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Michael Ellerman authored and Paul Mackerras committed Mar 22, 2006
1 parent 00611c5 commit 584fc6d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
10 changes: 10 additions & 0 deletions arch/powerpc/lib/e2a.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,14 @@ unsigned char e2a(unsigned char x)
}
EXPORT_SYMBOL(e2a);

unsigned char* strne2a(unsigned char *dest, const unsigned char *src, size_t n)
{
int i;

n = strnlen(src, n);

for (i = 0; i < n; i++)
dest[i] = e2a(src[i]);

return dest;
}
2 changes: 2 additions & 0 deletions include/asm-powerpc/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@ extern u32 booke_wdt_period;

/* EBCDIC -> ASCII conversion for [0-9A-Z] on iSeries */
extern unsigned char e2a(unsigned char);
extern unsigned char* strne2a(unsigned char *dest,
const unsigned char *src, size_t n);

struct device_node;
extern void note_scsi_host(struct device_node *, void *);
Expand Down

0 comments on commit 584fc6d

Please sign in to comment.